small operation description fixes
more consistency, fix a couple of missing ones
This commit is contained in:
parent
f582c1bd4e
commit
4167bdf0e6
@ -492,7 +492,7 @@ vips_complex2_class_init( VipsComplex2Class *class )
|
||||
|
||||
object_class->nickname = "complex2";
|
||||
object_class->description =
|
||||
_( "perform a binary complex operation on two images" );
|
||||
_( "complex binary operations on two images" );
|
||||
|
||||
aclass->process_line = vips_complex2_buffer;
|
||||
|
||||
|
@ -210,7 +210,7 @@ vips_deviate_class_init( VipsDeviateClass *class )
|
||||
gobject_class->get_property = vips_object_get_property;
|
||||
|
||||
object_class->nickname = "deviate";
|
||||
object_class->description = _( "find image average" );
|
||||
object_class->description = _( "find image standard deviation" );
|
||||
object_class->build = vips_deviate_build;
|
||||
|
||||
sclass->start = vips_deviate_start;
|
||||
|
@ -286,7 +286,7 @@ vips_hist_find_ndim_class_init( VipsHistFindNDimClass *class )
|
||||
gobject_class->get_property = vips_object_get_property;
|
||||
|
||||
object_class->nickname = "hist_find_ndim";
|
||||
object_class->description = _( "find image histogram" );
|
||||
object_class->description = _( "find n-dimensional image histogram" );
|
||||
object_class->build = vips_hist_find_ndim_build;
|
||||
|
||||
sclass->start = vips_hist_find_ndim_start;
|
||||
|
@ -196,7 +196,7 @@ vips_math_class_init( VipsMathClass *class )
|
||||
gobject_class->get_property = vips_object_get_property;
|
||||
|
||||
object_class->nickname = "math";
|
||||
object_class->description = _( "perform a math function on an image" );
|
||||
object_class->description = _( "apply a math operation to an image" );
|
||||
object_class->build = vips_math_build;
|
||||
|
||||
aclass->process_line = vips_math_buffer;
|
||||
|
@ -216,8 +216,7 @@ vips_relational_class_init( VipsRelationalClass *class )
|
||||
gobject_class->get_property = vips_object_get_property;
|
||||
|
||||
object_class->nickname = "relational";
|
||||
object_class->description =
|
||||
_( "a relational operation on a pair of images" );
|
||||
object_class->description = _( "relational operation on two images" );
|
||||
object_class->build = vips_relational_build;
|
||||
|
||||
aclass->process_line = vips_relational_buffer;
|
||||
|
@ -142,7 +142,7 @@ vips_compass_class_init( VipsCompassClass *class )
|
||||
gobject_class->get_property = vips_object_get_property;
|
||||
|
||||
object_class->nickname = "compass";
|
||||
object_class->description = _( "convolution operation" );
|
||||
object_class->description = _( "convolve with rotaing mask" );
|
||||
object_class->build = vips_compass_build;
|
||||
|
||||
VIPS_ARG_INT( class, "times", 101,
|
||||
|
@ -100,7 +100,7 @@ vips_convsep_class_init( VipsConvsepClass *class )
|
||||
gobject_class->get_property = vips_object_get_property;
|
||||
|
||||
object_class->nickname = "convsep";
|
||||
object_class->description = _( "convolution operation" );
|
||||
object_class->description = _( "seperable convolution operation" );
|
||||
object_class->build = vips_convsep_build;
|
||||
|
||||
VIPS_ARG_ENUM( class, "precision", 203,
|
||||
|
@ -108,7 +108,7 @@ vips_gaussblur_class_init( VipsGaussblurClass *class )
|
||||
gobject_class->get_property = vips_object_get_property;
|
||||
|
||||
object_class->nickname = "gaussblur";
|
||||
object_class->description = _( "Unsharp masking for print" );
|
||||
object_class->description = _( "gaussian blur" );
|
||||
object_class->build = vips_gaussblur_build;
|
||||
|
||||
operation_class->flags = VIPS_OPERATION_SEQUENTIAL;
|
||||
|
@ -309,7 +309,7 @@ vips_sharpen_class_init( VipsSharpenClass *class )
|
||||
gobject_class->get_property = vips_object_get_property;
|
||||
|
||||
object_class->nickname = "sharpen";
|
||||
object_class->description = _( "Unsharp masking for print" );
|
||||
object_class->description = _( "unsharp masking for print" );
|
||||
object_class->build = vips_sharpen_build;
|
||||
|
||||
operation_class->flags = VIPS_OPERATION_SEQUENTIAL;
|
||||
|
@ -428,7 +428,7 @@ vips_interpolate_bicubic_class_init( VipsInterpolateBicubicClass *iclass )
|
||||
VIPS_INTERPOLATE_CLASS( iclass );
|
||||
|
||||
object_class->nickname = "bicubic";
|
||||
object_class->description = _( "Bicubic interpolation (Catmull-Rom)" );
|
||||
object_class->description = _( "bicubic interpolation (Catmull-Rom)" );
|
||||
|
||||
interpolate_class->interpolate = vips_interpolate_bicubic_interpolate;
|
||||
interpolate_class->window_size = 4;
|
||||
|
@ -354,7 +354,7 @@ vips_interpolate_nearest_class_init( VipsInterpolateNearestClass *class )
|
||||
VIPS_INTERPOLATE_CLASS( class );
|
||||
|
||||
object_class->nickname = "nearest";
|
||||
object_class->description = _( "Nearest-neighbour interpolation" );
|
||||
object_class->description = _( "nearest-neighbour interpolation" );
|
||||
|
||||
interpolate_class->interpolate = vips_interpolate_nearest_interpolate;
|
||||
interpolate_class->window_size = 1;
|
||||
@ -525,7 +525,7 @@ vips_interpolate_bilinear_class_init( VipsInterpolateBilinearClass *class )
|
||||
(VipsInterpolateClass *) class;
|
||||
|
||||
object_class->nickname = "bilinear";
|
||||
object_class->description = _( "Bilinear interpolation" );
|
||||
object_class->description = _( "bilinear interpolation" );
|
||||
|
||||
interpolate_class->interpolate = vips_interpolate_bilinear_interpolate;
|
||||
interpolate_class->window_size = 2;
|
||||
|
@ -856,7 +856,7 @@ vips_interpolate_lbb_class_init( VipsInterpolateLbbClass *klass )
|
||||
VIPS_INTERPOLATE_CLASS( klass );
|
||||
|
||||
object_class->nickname = "lbb";
|
||||
object_class->description = _( "Reduced halo bicubic" );
|
||||
object_class->description = _( "reduced halo bicubic" );
|
||||
|
||||
interpolate_class->interpolate = vips_interpolate_lbb_interpolate;
|
||||
interpolate_class->window_size = 4;
|
||||
|
@ -1577,7 +1577,7 @@ vips_interpolate_nohalo_class_init( VipsInterpolateNohaloClass *klass )
|
||||
|
||||
object_class->nickname = "nohalo";
|
||||
object_class->description =
|
||||
_( "Edge sharpening resampler with halo reduction" );
|
||||
_( "edge sharpening resampler with halo reduction" );
|
||||
|
||||
interpolate_class->interpolate = vips_interpolate_nohalo_interpolate;
|
||||
interpolate_class->window_size = 5;
|
||||
|
Loading…
Reference in New Issue
Block a user