enhance pencil sketch

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
myspacee
Posts: 153
Joined: 2007-06-14T02:09:35-07:00

enhance pencil sketch

Post by myspacee »

Hello to all,
is there any way to enhance pencil sketch like this ? :

http://static.repubblica.it/laprovincia ... gio/01.JPG

i'ive many sketch to publish on paper but quality is very low.

I'm searching the way to contrast black.

thank yuo for any help.

m.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: enhance pencil sketch

Post by fmw42 »

try -auto-level or -contrast-stretch

convert 01.JPG -auto-level result1.jpg

the above may not be enough. If that is the case then try

convert 01.JPG -contrast-stretch XX% result2.jpg

where XX is some percent. I tried 1%, but you may want more or less.


see http://www.imagemagick.org/Usage/color_mods/ for more details on various types of contrast and brightness changes.
Post Reply