Closed Rich2020 closed 4 months ago
Hi!
In the example code there is this line:
bbs = object_detector.detect(frame)
but object_detector is not described anywhere. Can we use any object detector that returns ([x,y,w,h], conf, class)?
object_detector
([x,y,w,h], conf, class)
Is there a complete example somewhere?
Yup, just make sure the inputs are formatted as expected (refer to the comment in the example code or you can take a look at the source code).
Hi!
In the example code there is this line:
bbs = object_detector.detect(frame)
but
object_detector
is not described anywhere. Can we use any object detector that returns([x,y,w,h], conf, class)
?Is there a complete example somewhere?