Create lineart from color images
Posted: 2014-02-18T01:31:37-07:00
When looking for vectorization process, I found a software called mkbitmap by Peter Selinger. It's function is for creating bitonal image as an input for potrace. The following is what the sotware can do :
Original
Thresholding without highpass filter
Thresholding with highpass filter
Are there an equivalent function in ImageMagick especially the one with highpass filter?
Because those function will be useful for creating coloring book for my student by using pre-existing color images.
Regards,
--------------------------------------
See also
mkbitmap man page
Original
Thresholding without highpass filter
Code: Select all
mkbitmap -x -t 0.5
Code: Select all
mkbitmap -x -f 2
Because those function will be useful for creating coloring book for my student by using pre-existing color images.
Regards,
--------------------------------------
See also
mkbitmap man page