Skip to content

Commit

Permalink
sharpen: reduce max sigma to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
lovell committed Jan 23, 2023
1 parent 321b1cf commit cb3adaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* use with (un)premultiply for ~10% perf gain on AVX CPUs
- dedupe FITS header write [ewelot]
- add fast path to extract_band and bandjoin for uchar images [lovell]
- reduce `vips_sharpen` max `sigma` to 10 [lovell]

TBD 8.14.2

Expand Down
2 changes: 1 addition & 1 deletion libvips/convolution/sharpen.c
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ vips_sharpen_class_init( VipsSharpenClass *class )
_( "Sigma of Gaussian" ),
VIPS_ARGUMENT_OPTIONAL_INPUT,
G_STRUCT_OFFSET( VipsSharpen, sigma ),
0.000001, 10000.0, 0.5 );
0.000001, 10.0, 0.5 );

VIPS_ARG_DOUBLE( class, "x1", 5,
_( "x1" ),
Expand Down

0 comments on commit cb3adaf

Please sign in to comment.