itmorn commited on
Commit
678c1b9
·
1 Parent(s): 4517bd2
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ lineType = 8
9
  font = cv2.FONT_HERSHEY_SIMPLEX
10
 
11
  def inference(image):
12
- img_out = np.zeros((500, 600, 3))
13
  cv2.putText(img_out, "ease contact the server for trouble", (20, 20), font, 1, (0, 255, 0), 2)
14
  return img_out
15
 
 
9
  font = cv2.FONT_HERSHEY_SIMPLEX
10
 
11
  def inference(image):
12
+ img_out = np.zeros((500, 600, 3),dtype=np.uint8)
13
  cv2.putText(img_out, "ease contact the server for trouble", (20, 20), font, 1, (0, 255, 0), 2)
14
  return img_out
15