mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-04-02 19:06:54 +00:00
13 lines
327 B
Python
13 lines
327 B
Python
import cv2
|
|
|
|
img = cv2.imread('demo.jpg') # enter your image here
|
|
|
|
grey_img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
|
|
invert = cv2.bitwise_not(grey_img)
|
|
|
|
blur = cv2.GaussianBlur(invert, (21, 21), 0)
|
|
invertedblur = cv2.bitwise_not(blur)
|
|
sketch = cv2.divide(grey_img, invertedblur, scale=256.0)
|
|
cv2.imwrite("sketch.png", sketch)
|
|
|