How can found traffic signs detection in following image

6 visualizaciones (últimos 30 días)
handan duras
handan duras el 22 de Abr. de 2015
Comentada: Image Analyst el 21 de Abr. de 2017
How can found traffic signs detection in following image? I tried very method but i couldn't succeed. my code bad working, is not find detection tiraffic sign , by my code detect diffrent area finding. please help me
  1 comentario
Ahmet Cecen
Ahmet Cecen el 23 de Abr. de 2015
You might be better served with a database type search with this task, like character detection or eigenfaces. Create a database of traffic signs, then check if the above image has any of the signs you have in your database. Otherwise, the moment you change the lighting, your generalized identification method will likely break.

Iniciar sesión para comentar.

Respuestas (4)

Guillaume
Guillaume el 22 de Abr. de 2015
I would experiment with the colorThresholder app, in the HSV space. You could either threshold on red hues (the edges of the sign), or blue hue (the inside of the sign).
A quick play with the app gave me the following code:
roadimg = imread('1.jpg');
hsvimg = rgb2hsv(roadimg);
binaryimg = hsvimg(:, :, 1) >= .579 & hsvimg(:, :, 1) <= .705 & ... %filter on hue
hsvimg(:, :, 3) >= .310 & hsvimg(:, :, 3) <= .629; %filter on value
  1 comentario
handan duras
handan duras el 23 de Abr. de 2015
Editada: handan duras el 23 de Abr. de 2015
thank you for reply, i use your code but this code can not detection only traffic sign (the result show in to second image),i want find only traffic sign look like following image. thank you so much

Iniciar sesión para comentar.


Image Analyst
Image Analyst el 23 de Abr. de 2015
I don't think this is really a MATLAB question. There are lots of algorithms for finding road signs. You can find most of them listed here: http://www.visionbib.com/bibliography/active693.html#Road%20Signs,%20Traffic%20Signs,%20Objects%20along%20the%20Road,%20Inspections
Pick one, and code it up.
  2 comentarios
handan duras
handan duras el 13 de Mayo de 2015
hello, thank you for your help. I choose the following paper
de la Escalera, A., and Moreno, L., Road traffic sign detection and classification, IndEle(44), 1997, pp. 848-859. BibRef 9700I
but i can't see the code.Please show me a way to open up code. thank you so much
Image Analyst
Image Analyst el 13 de Mayo de 2015
Sorry, I don't have the code for that paper. http://matlab.wikia.com/wiki/FAQ#Can_you_program_up_the_algorithm_in_this_article_for_me_and_explain_it_to_me.3F And writing it for you would take much more of my time that I'm willing to donate to you. I hope you understand. I suggest you ask the authors for code - they already have it, I don't.

Iniciar sesión para comentar.


Sneha Agrawal
Sneha Agrawal el 28 de Sept. de 2016
I am also trying to work on it..can you please explain how you detected the traffic sign here

Shreyas S A
Shreyas S A el 21 de Abr. de 2017
Can someone send me the code for traffic signboard detection and recognition from a video?

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by