set default value of blur for snohalo1 to .3333333 (kind of like Mitchell-Netravali)

This commit is contained in:
Nicolas Robidoux 2010-01-28 21:53:20 +00:00
parent 016db6a29e
commit cbe4c044d4
2 changed files with 2 additions and 2 deletions

View File

@ -1079,7 +1079,7 @@ vips_interpolate_nohalo2_class_init( VipsInterpolateNohalo2Class *klass )
gobject_class->get_property = vips_object_get_property;
object_class->nickname = "nohalo2";
object_class->description = _( "Nohalo level 2" );
object_class->description = _( "Smoother and more edge-enhancing nohalo1" );
interpolate_class->interpolate = vips_interpolate_nohalo2_interpolate;
interpolate_class->window_size = 6;

View File

@ -1123,5 +1123,5 @@ vips_interpolate_snohalo1_class_init( VipsInterpolateSnohalo1Class *klass )
static void
vips_interpolate_snohalo1_init( VipsInterpolateSnohalo1 *snohalo1 )
{
snohalo1->blur = 1.0;
snohalo1->blur = 0.3333333;
}