Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
cybertiwari
/
test
like
0
Runtime error
App
Files
Files
Community
5b9cc51
test
/
Text2Image
/
experiments_face.py
Sunil Tiwari
Text2Image Model added
5b9cc51
10 months ago
raw
Copy download link
history
blame
Safe
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)