-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
How to process one image at a time with the ChaiDNN v2? #147
Comments
@mazhongzhong |
@VishalX Thanks anyway. And anyone know better ways to process videos with ChaiDNN v2? |
I can process video as below flow Open video file |
@cuongdv1 |
Would you be able to share your code for reading in frames and running inference? I would like to do something similar. |
Hey i installed Chaidnn Hardware and i installed the software through make files. Where can i find the perfomance report of the compilation that i have done in the make file?. |
It seems the ChaiDNN v2 has to have two images as input. But if you want to deal with videos, the standard procedure is: grab a video frame, processing it, grab next frame, processing this new frame, and so on. But when I trying to process a video with the ChaiDNN v2, I'm running into a problem. With the current using paradigm, the video process procedure becomes: grab video frame 1, do nothing, grab video frame 2, processing 1 and 2, grab video frame 3, do nothing, grab video frame 4, processing 3 and 4...
So, does anyone know how to input one (and only one) image into the ChaiDNN v2 at a time? Or, can anyone provides a example to demonstrate how to process video streams/image sequences with ChaiDNN v2?
The text was updated successfully, but these errors were encountered: