Ask Your Question
0

how to detect numbers written on a speed sign

asked 2015-08-19 09:57:49 -0600

RB gravatar image

i want to use opencv for detecting the speed signs on the road, and extract the number written on the sign. is there any library that does task?

note: i know how to make image matching, but i do not know how to extract specific information "numbers" from the detected sign.

please let me know if there is any library or a class in opencv that does that.

edit retag flag offensive close merge delete

Comments

Balaji R gravatar imageBalaji R ( 2015-08-19 10:02:30 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
2

answered 2015-08-20 04:19:29 -0600

OpenCV can do that perfectly fine.

  1. Train cascade classifier detectors for the most common speed signs, only seperating them in different shape models.
  2. Use the detector to find shape regions.
  3. Apply local thresholding (which works perfectly fine on speed signs) to make a blob of the speed symbol.
  4. Apply shape based matching with a database shape.

How to do that is again your task, a good place to start is the search button on top of this forum...

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2015-08-19 09:57:49 -0600

Seen: 394 times

Last updated: Aug 20 '15