Hey everyone,
I just released my latest library called RSImageProcessing that let's you do a lot of things with Bitmaps like inverting, grayscaling, blurring, etc.
Now i want to follow this pseudo-code on how to convert photo-to-sketch images:
[Done] s = Read-File-Into-Image("/path/to/image")
[Done] g = Convert-To-Gray-Scale(s)
[Done] i = Invert-Colors(g)
[Done] b = Apply-Gaussian-Blur(i)
[Unfinished] result = Color-Dodge-Blend-Merge(b,g)
All the [Done]-methods could be done with my library, the only thing i can't seem to find/make is the color dodge blending.
Does anyone have an idea, source code (B4A / Java (Android then java.awt is not supported by Android!) on how to do this?
Here are some links:
My Technical Scratch Pad.: How I wrote [java]code to give Pencil Sketch effect to a picture
Blend modes - Wikipedia, the free encyclopedia
Thanks,
Tomas
I just released my latest library called RSImageProcessing that let's you do a lot of things with Bitmaps like inverting, grayscaling, blurring, etc.
Now i want to follow this pseudo-code on how to convert photo-to-sketch images:
[Done] s = Read-File-Into-Image("/path/to/image")
[Done] g = Convert-To-Gray-Scale(s)
[Done] i = Invert-Colors(g)
[Done] b = Apply-Gaussian-Blur(i)
[Unfinished] result = Color-Dodge-Blend-Merge(b,g)
All the [Done]-methods could be done with my library, the only thing i can't seem to find/make is the color dodge blending.
Does anyone have an idea, source code (B4A / Java (Android then java.awt is not supported by Android!) on how to do this?
Here are some links:
My Technical Scratch Pad.: How I wrote [java]code to give Pencil Sketch effect to a picture
Blend modes - Wikipedia, the free encyclopedia
Thanks,
Tomas