8 lines
149 B
Python
8 lines
149 B
Python
import cv2
|
|
import extras.face_crop as cropper
|
|
|
|
|
|
img = cv2.imread('lena.png')
|
|
result = cropper.crop_image(img)
|
|
cv2.imwrite('lena_result.png', result)
|