I was looking for a way to convert my silhouette images into a stencil outline. Is there a way to do this correctly?
I have tried taking my silhouette image and applied the following 2 commands:
- convert image.png -edge .5 -blur 0x.5 image_new.png
convert image_new.png -negate image_final.png
It does leave a bit of noise though around the border edges and the images are not super clean.
I was just wondering if there is a better way to do this. I'm probably doing it all wrong
Thank you