hashb commited on
Commit
1e1f9c8
·
1 Parent(s): dcfe298

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -13,8 +13,7 @@ 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.imread(np.array(img))
18
  classIds, scores, boxes = model.detect(img, confThreshold=0.6, nmsThreshold=0.4)
19
 
20
  for (classId, score, box) in zip(classIds, scores, boxes):
 
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):