You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
391 B
Python

3 years ago
import cv2
3 years ago
from modelscope.hub.snapshot_download import snapshot_download
3 years ago
from modelscope.pipelines import pipeline
3 years ago
model_dir = snapshot_download('damo/cv_unet_person-image-cartoon_compound-models', cache_dir='.')
img_cartoon = pipeline('image-portrait-stylization', model=model_dir)
3 years ago
result = img_cartoon('input.png')
cv2.imwrite('result.png', result['output_img'])
3 years ago
print('finished!')
3 years ago