hashb commited on
Commit
9fa2a5f
·
1 Parent(s): 49bacde

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -12,8 +12,9 @@ model = cv2.dnn_DetectionModel(net)
12
  model.setInputParams(scale=1 / 255, size=(416, 416), swapRB=True)
13
 
14
  def detect(image):
15
- img = Image.fromarray(image)
16
- img = cv2.cvtColor(np.array(img), cv2.COLOR_BGR2RGB)
 
17
  classIds, scores, boxes = model.detect(img, confThreshold=0.6, nmsThreshold=0.4)
18
 
19
  for (classId, score, box) in zip(classIds, scores, boxes):
 
12
  model.setInputParams(scale=1 / 255, size=(416, 416), swapRB=True)
13
 
14
  def detect(image):
15
+ #img = Image.fromarray(image)
16
+ #img = cv2.cvtColor(np.array(img), cv2.COLOR_BGR2RGB)
17
+ img = cv2.cv.fromarray(image)
18
  classIds, scores, boxes = model.detect(img, confThreshold=0.6, nmsThreshold=0.4)
19
 
20
  for (classId, score, box) in zip(classIds, scores, boxes):