vahidrezanezhad commited on
Commit
b5cd0e0
·
verified ·
1 Parent(s): f60949d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -47,9 +47,11 @@ def visualize_model_output(prediction, img):
47
 
48
  print(output,'shapes')
49
  print(img,'shapes2')
 
 
50
 
51
  added_image = cv2.addWeighted(img,1,output,.1,0)
52
-
53
  return added_image
54
 
55
 
 
47
 
48
  print(output,'shapes')
49
  print(img,'shapes2')
50
+
51
+
52
 
53
  added_image = cv2.addWeighted(img,1,output,.1,0)
54
+ print(added_image)
55
  return added_image
56
 
57