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.

How do i run samplemodule on my host computer?

0 votes

Hi Guys/Gals,

I am trying to add the samplemodule(or any module for that case) to the mapping to run the module on host computer using jevois-daemon.

I tried building the module using ./rebuild-host.sh inside the samplemodule. Please note I am not asking to run the module using jevois-inventor with the jevois-camera. I'm trying to run the smaplemodule on my webcam infact.

Is there any way to do this ? 

Thanks in advance. ;)

asked Jan 18, 2019 in Programmer Questions by ashwinsushil (240 points)

1 Answer

0 votes

yes, after you have run rebuild-host.sh you should add a video mapping to /jevois/config/videomappings.cfg on your host, for example:

YUYV 320 240 30.0 YUYV 320 240 30.0 SampleVendor SampleModule

Then run jevois-daemon and type listmappings

Go through the list and find the number for the mapping you just added

type quit and finally

jevois-daemon --videomapping=XX

where XX is the mapping number.

for more details see the section on "compiling and testing on host" here:

http://jevois.org/tutorials/ProgrammerHello.html

answered Jan 23, 2019 by JeVois (46,580 points)
...