Image to Pencil Sketch with Python
- Project URL: Show Project
This project involves using Python to convert an image into a pencil sketch. This is done by reading the image in RGB format and converting it to grayscale. The grayscale image is then inverted to enhance details. Finally, the pencil sketch is created by mixing the grayscale image with the inverted blurry image using the divide function from the cv2 library. By using this method, i can easily transform any image into a pencil sketch programmatically.