Hello. need help
can some1 help me with the code for converting an image into a pencil sketch in vb.. :) please
Printable View
Hello. need help
can some1 help me with the code for converting an image into a pencil sketch in vb.. :) please
Please provide more information. Do you mean something along the lines of applying a pencil sketch effect on an image?
Have you tried to find a solution on google?
i want entire image or a photo to be converted into pencil sketch.. just like converting it into a grayscale or negative.
To do a simple desaturation, for each pixel, take R, G and B values, average them, and then assign the averaged value to all three.
R:20, G:90, B:40 = (20+90+40)/3 = 50 = R:50, G:50, B:50