I'm currently doing a computer science masters project creating a parser/interpreter for the turtle/LEGO language. Where you enter in commands forward to draw a line forward(FD) and left turn(LT) and right turn(RT) to change the direction you draw this. Anyway i was looking for an interesting extension and had the idea of using open cv to recognise shapes (like a square or triangle) drawn in black and white. Generating x,y coordinates for it and ideally outputting the commands needed to draw that. For example a square would be:
FD 10 LT 90 FD 10 LT 90 FD 10 LT 90 FD 10
I have experience with C but none really with open CV. How difficult do you think this would be and with a week before hand in do you think it's realistic. Thanks! Albie