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.

Virtual Camera Input for JeVois on Host

0 votes
Hi,

I would like to test the code running on the JeVois with simulated images. Is there a way to make the host build read the camera input from a file or another form of "virtual" input?

The only idea I had so far was writing a tool that acts like a web cam driver but that seems a bit cumbersome.

Thanks!
asked Apr 9, 2018 in Programmer Questions by phildue (420 points)

1 Answer

+1 vote
 
Best answer
Yes, please see the parameter cameradev of jevois-daemon here: http://jevois.org/doc/JeVoisDaemon.html

Basically, you would run: jevois-daemon --cameradev=movie.avi --videomapping=XX

Where XX is the mapping number for the module you want to run (as returned by listmappings).
answered Apr 9, 2018 by JeVois (46,580 points)
selected Nov 13, 2018 by phildue
...