Traffic light detection

Hello guys!! I am new to OpenMV and do not know many things about this board. How can I make my OpenMV detect particular objects from my dataset? For example, I want my OpenMV camera to detect traffic lights, I want it to detect whether it is green or red color coming from the traffic light. Please help me!

How can I make my OpenMV detect particular objects from my dataset?

You can train a neural network using EdgeImpulse on a dataset you have (or collect one with the camera) to classify an object. Note it will only classify the object (tell you if it’s x or y) it can’t find it in the image. Here’s some tutorials and you can find more if you Google OpenMV + EdgeImpulse

I want it to detect whether it is green or red color coming from the traffic light. Please help me!

You can also simply just use find_blobs with thresholds for green/red see the examples in the IDE.