Spaces:
Running
on
Zero
Running
on
Zero
File size: 361 Bytes
28b27d8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from ldm.util import create_carvekit_interface, load_and_preprocess
def load_preprocess_model():
carvekit = create_carvekit_interface()
return carvekit
def preprocess_image(models, input_im):
'''
:param input_im (PIL Image).
:return input_im (H, W, 3) array.
'''
input_im = load_and_preprocess(models, input_im)
return input_im |