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 save video through a wireless connection?

0 votes
I would like to collect data for deep learning algorithm through 'savevideo' module of JeVois.

By the way, using JeVois's USB cable, images can be collected only in the near environment.

How can I communicate with host-pc and collect images without connecting USB cable?
asked Jul 13, 2018 in Hardware Questions by DH (220 points)

1 Answer

+1 vote

Maybe the easiest is to use a raspberry pi zero W or regular pi 3, and connect JeVois to the Pi using a short USB cable. Make sure you use a Y cable and also connect JeVois to power as the Pi cannot power JeVois (see http://jevois.org/doc/UserConnect.html ). You capture the video from JeVois on the pi using some custom OpenCV code (search google for "opencv capture video camera") and then stream those frames over wifi. We have not tested it, but maybe mjpg-streamer (described below) or similar exists for the Pi.

You could also try to use an OpenWRT box with the connections shown in the above link (look for the section about OpenWRT). Then run the mjpg-streamer OpenWRT module, see https://wiki.openwrt.org/doc/howto/webcam or the more recent https://openwrt.org/docs/guide-user/hardware/video/webcam

answered Jul 20, 2018 by JeVois (46,580 points)
...