How can found traffic signs detection in following image
이전 댓글 표시

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
Ahmet Cecen
2015년 4월 23일
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.
답변 (4개)
Guillaume
2015년 4월 22일
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
handan duras
2015년 4월 23일
편집: handan duras
2015년 4월 23일
Image Analyst
2015년 4월 23일
0 개 추천
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
handan duras
2015년 5월 13일
Image Analyst
2015년 5월 13일
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.
Sneha Agrawal
2016년 9월 28일
0 개 추천
I am also trying to work on it..can you please explain how you detected the traffic sign here
댓글 수: 1
Image Analyst
2016년 9월 28일
That was all discussed in my Answer.
Shreyas S A
2017년 4월 21일
0 개 추천
Can someone send me the code for traffic signboard detection and recognition from a video?
댓글 수: 1
Image Analyst
2017년 4월 21일
See stop sign detection example here: https://www.mathworks.com/products/computer-vision/features.html#object-detection-and-recognition
Automatically Detect and Recognize Text in Natural Images http://www.mathworks.com/help/vision/examples/automatically-detect-and-recognize-text-in-natural-images.html?prodcode=VP&language=en
카테고리
도움말 센터 및 File Exchange에서 Motion Detection에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

