Hello!
There is an image with a bar code printed in bad quality. How can I improve the quality for reliable recognition?
Increase image quality
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Increase image quality
try
see
http://www.imagemagick.org/Usage/morphology/
Code: Select all
convert crop.png -morphology open diamond:2 result.png
http://www.imagemagick.org/Usage/morphology/
Re: Increase image quality
Perfect! Thanks you!