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 to track a specific object using Tenserflow and a pan/tilt servo?

0 votes
I want to track a sunflower using the Jevois camera and pan/tilt set up. This requires it to ignore other objects recognized besides the sunflower.
asked Sep 2, 2018 in Programmer Questions by VoltGe (140 points)

1 Answer

0 votes
I think this should work, you start with

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

then run this module on JeVois:

http://jevois.org/moddoc/TensorFlowSaliency/modinfo.html

and you train tensorflow as in:

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

or any of these modules (some retraining will be needed, which is a bit more complex with YOLO or mobilenet+SSD networks)

http://jevois.org/moddoc/DetectionDNN/modinfo.html

http://jevois.org/moddoc/PyDetectionDNN/modinfo.html

http://jevois.org/moddoc/DarknetYOLO/modinfo.html
answered Sep 4, 2018 by JeVois (46,580 points)
...