adaptive-sharpen not working?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
jimtonic
Posts: 1
Joined: 2011-09-03T06:01:16-07:00
Authentication code: 8675308

adaptive-sharpen not working?

Post by jimtonic »

i've tried several versions of imagemagick, e.g. 6.6.4, 6.6.7, 6.7.2. (Windows, MacOS) and the command "-adaptive-sharpen" does not seem to have any effect at all.
is there something i am missing or is it simply broken?

example
"convert picture.tif -resize x500 -adaptive-sharpen 0x1 picture.jpg"
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: adaptive-sharpen not working?

Post by fmw42 »

IM 6.7.2.1 Q16 (HDRI) Mac OSX Tiger

Seems to be the case:

convert rose: -adaptive-sharpen 0x5 rose_as5.png
compare -metric rmse rose: rose_as5.png null:
0 (0)

convert rose: -adaptive-blur 0x5 rose_ab5.png
convert rose_ab5.png -adaptive-sharpen 0x5 rose_ab5_as5.png
compare -metric rmse rose_ab5.png rose_ab5_as5.png null:
0 (0)


I suggest you report this on the bugs forum.
Post Reply