We are making an autonomous robot (in college event) that follows certain signs and directions and goes through a directed route. The robot will have a camera mounted at head. It will follow the signs drawn on the road ahead of it, or the walls and accordingly make its decision. The signs will be GREEN ARROWS (For GO Signal), or RED T's as a sign for halt. The robot will scan these symbols in Real Time and perform the necessary action. These signs can be on wall directly in front or drawn on the path ahead.
I have tried looking for necessary Image transform algorithms or method, but we are quite new into this field. I seek you help on how could this problem be tackled and necessary code that may help us (Assuming us to be starters).
I have looked into following threads but I'm confused : - OpenCV Object Detection - Center Point - How to recognize rectangles in this image? - http://www.chrisevansdev.com/computer-vision-opensurf.html (I'm not able to use it)
One of the hints given for the event was that we can model the arrows as a rectangle and triangle put together as find whether the center of triangle is to the right of that rectangle (which means to go right) or otherwise. Similarly for the T's.
Thanks! :)