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.
We have moved to a new forum at http://jevois.usc.edu, please check it out. The forum at jevois.org/qa will not allow new user registrations but is maintained alive for its useful past questions and answers.

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
...