Brasd99 commited on
Commit
d386c71
1 Parent(s): 591c1ef

Added print

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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: