DeFooocus / experiments_face.py
shmuel85's picture
Upload folder using huggingface_hub
10a5730 verified
raw
history blame
149 Bytes
import cv2
import extras.face_crop as cropper
img = cv2.imread('lena.png')
result = cropper.crop_image(img)
cv2.imwrite('lena_result.png', result)