Does anyone have an idea, link, library, source code, … on how to convert photo’s and images (bitmaps) to sketchy-like pictures? I can’t find any good sources on how to do it.
I found this link How to cartoon-ify an image programmatically? about how to cartoon-ify a image programmatically, but i prefer to make it image-to-sketch one.
I want to make an android app that can programmatically “convert” JPEG photo’s to sketchy images.
Ok, so i found my own answer using different techniques like Mark told me.
I use the following pseudocode:
The first four methods were easily to find on the internet, however on the last one I couldn’t find a lot of information, not even source code. So I searched on how PS did it and found the following formula in c++:
Then i converted it to Java with the following code:
If the code could be improved, please post a new answer or comment below. Thanks!