We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents beddd9f + d47e742 commit b30f6fbCopy full SHA for b30f6fb
1 file changed
examples/image/classify.py
@@ -102,7 +102,10 @@ def main(argv):
102
print('%s: %.2f\t' % (label, score), end='')
103
print('', flush=True)
104
#cv2.imshow('edgeimpulse',img)
105
- #cv2.waitKey(1)
+ #if cv2.waitKey(1) == ord('q'):
106
+ # break
107
+
108
109
elif "bounding_boxes" in res["result"].keys():
110
print('Found %d bounding boxes (%d ms.)' % (len(res["result"]["bounding_boxes"]), res['timing']['dsp'] + res['timing']['classification']))
111
for bb in res["result"]["bounding_boxes"]:
0 commit comments