Enhance book printed image

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
ramseslegrand
Posts: 3
Joined: 2014-03-13T11:35:13-07:00
Authentication code: 6789

Enhance book printed image

Post by ramseslegrand »

I have an old picture from book you can see there:
http://img41.imageshack.us/img41/1931/k6fv.jpg
Is it a way to make a better picture from it ?
Thanks
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Enhance book printed image

Post by snibgo »

Code: Select all

convert k6fv.jpg -auto-level -blur 0x3 -unsharp 0x3 -auto-level k.png
This gives a reasonable result. A different unsharp sigma, or no unsharp at all, might be preferred.
snibgo's IM pages: im.snibgo.com
ramseslegrand
Posts: 3
Joined: 2014-03-13T11:35:13-07:00
Authentication code: 6789

Re: Enhance book printed image

Post by ramseslegrand »

Thanks, I'll try some tests around this idea tomorow.
Post Reply