Spaces:
Runtime error
Runtime error
Added print
Browse files
app.py
CHANGED
@@ -9,6 +9,7 @@ subprocess.call(['pip', 'install', 'git+https://github.com/facebookresearch/dete
|
|
9 |
from helpers.processor import TextureProcessor
|
10 |
|
11 |
def image_processing(person_img: np.ndarray, model_img: np.ndarray) -> np.ndarray:
|
|
|
12 |
return texture_processor.extract(person_img, model_img)
|
13 |
|
14 |
def load_model(current_path: str, config: Dict) -> None:
|
|
|
9 |
from helpers.processor import TextureProcessor
|
10 |
|
11 |
def image_processing(person_img: np.ndarray, model_img: np.ndarray) -> np.ndarray:
|
12 |
+
print('Attempt to get textured image.')
|
13 |
return texture_processor.extract(person_img, model_img)
|
14 |
|
15 |
def load_model(current_path: str, config: Dict) -> None:
|