Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
Because of un-manageable amounts of spam despite our use of CAPTCHAs, email authorization, and other tools, we have discontinued this forum (see the 700k+ registered users with validated email addresses at right?). Please email us any questions or post bug reports and feature requests on GitHub at https://github.com/jevois -- The content below remains available for future reference.
Welcome to JeVois Tech Zone, where you can ask questions and receive answers from other members of the community.

Can I decrease the recognition time - YOLO

0 votes
My Jevois camera/ Arduino Nano combination alerts me wonderfully when it sees a "person", "motorbike", or  "bicycle". The acquisition time is adequate but I would like for it to be even faster. Currently, I'm running " YUYV 640 480 15.0 JeVois DarknetYOLO ".  Is this the best choice for person recognition? Please advise, Thank you!!
asked May 24, 2018 in Programmer Questions by CoralXray2018 (360 points)

1 Answer

+1 vote
 
Best answer

great to hear! Yes, you can choose speed based on resolution. See the section about "speed and network size" at http://jevois.org/moddoc/DarknetYOLO/modinfo.html

so, if you do, for example,

setpar netin 160 120

you should process at about 695ms/frame (1.4 frames/s). You could also reduce to YUYV 320 240 15.0 in such case. Note that grabbing twice bigger than you will process is desirable as the downscaling by a factor 2 (here, grab at 320x240, then scale down to netin at 160x120) will cleanup some YUYV artifacts (color information is low resolution in this format which only uses 2 bytes/pixel).

also see the second half of this video: https://www.youtube.com/watch?v=77VRwFtIe8I

the faster you get, the less accurate you will be.

answered May 24, 2018 by JeVois (46,580 points)
selected May 25, 2018 by CoralXray2018
Thank you! Will try shortly.
...