I'm new in the forum.
I hope that somebody could help me. So, I'll go directly to the point.
I need some processing to covert this striped/lined (vertical lines) font into a solid/filled font.
Here is my original image (input).
Here, generated image with IM. (With a lot of noise)
And this, the expected image (edited with Gimp).
I'm using this script/command-line:
Code: Select all
convert inputFileName \
-black-threshold 40% \
-white-threshold 45% \
-despeckle \
-deskew 50% \
-morphology Open Octagon:3 \
-morphology Erode Octagon:3 \
outputFileName
Thank you!
Best regards,
devman2012