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.
Welcome to JeVois Tech Zone, where you can ask questions and receive answers from other members of the community.

how to detect a laser pointer spot (650 nm) using jevois ?

+1 vote
I need to track a laser pointer spot on different backgrounds. Tried with object tracker in HSV but no setting seems to give reliable results. Is there a different way to that ?
asked Mar 5, 2020 in User questions by thegigi (170 points)

1 Answer

0 votes

You could try coding your own python module to detect your laser spot.

Using cv2.inRange you can detect red blobs in the camera image. Have a look here https://stackoverflow.com/questions/42840526/opencv-python-red-ball-detection-and-tracking and https://www.pyimagesearch.com/2015/09/14/ball-tracking-with-opencv/ to put you on rails.

answered Apr 3, 2020 by opusr (520 points)
...