vahidrezanezhad commited on
Commit
6f5ee08
·
verified ·
1 Parent(s): 30172d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -38,7 +38,8 @@ def visualize_model_output(prediction, img):
38
  output[:,:,1][prediction[:,:,0]==unq_class] = rgb_class_unique[1]
39
  output[:,:,2][prediction[:,:,0]==unq_class] = rgb_class_unique[2]
40
 
41
- output = output.astype(np.uint8)
 
42
 
43
  overlayed_image = cv2.addWeighted(img,0.4,output,0.1,0)
44
 
 
38
  output[:,:,1][prediction[:,:,0]==unq_class] = rgb_class_unique[1]
39
  output[:,:,2][prediction[:,:,0]==unq_class] = rgb_class_unique[2]
40
 
41
+ output = output.astype(np.float64)
42
+ img = img.astype(np.float64)
43
 
44
  overlayed_image = cv2.addWeighted(img,0.4,output,0.1,0)
45