hi im attempting to implement hailo 8 chip on a imx6 board
what i trying to do is connect a webcam video to be inferenced by the hailo chip and stream the results to another place(local webserver or the screen with x11)
imx6 is 32 bit which means i have to use c++ or c (preferably c++) only,
this also restricts me from using tappas or any python libraries which would make this easier.
the examples in the Hailo-Application-Code-Examples github for c++ all seem to deal with taking an input mp4 and inferencing on it,knowing that a file is x frames long, replacing the input path on this example Hailo-Application-Code-Examples runtime cpp detection general_detection_inference , with my gstreamer pipline: “v4l2src device=/dev/video9 ! video/x-raw,format=YUY2,width=320,height=240 ! videoconvert ! appsink” i was able to connect my webcam to the example (replacing it with /dev/video9 does not work)
however the inferencing stops at 1 frame, so i changed the frame_count to 200 that seems to work but it will just stop inferencing and the hailoRT will begin to timeout because the example is not sending any frames to be inferenced?
how would i modify this or another example to do what im trying to?