필터 지우기
필터 지우기

morphological operations in matlab

조회 수: 2 (최근 30일)
azan
azan 2013년 2월 18일
I am having an image uploaded at: http://tinypic.com/view.php?pic=1h2n8g&s=6 After doing some processing on it I found the following results uploaded at: http://tinypic.com/view.php?pic=1jqffa&s=6 and http://tinypic.com/view.php?pic=2l6sk1&s=6
The code used for processing is:
img = imread('newroad1.jpg');
hsv = rgb2hsv(img);
I1 = hsv(:,:,3);
figure,imshow(I1)
se = strel('square',5);
mgrad = imdilate(I1, se) - imerode(I1, se);
figure,imshow(mgrad)
I=im2bw(mgrad,0.1);
What morphological operations should I use so that I can get the above mentioned results.

채택된 답변

Image Analyst
Image Analyst 2013년 2월 18일
Those would be the 'skel' and 'spur' options of bwmorph().
  댓글 수: 9
Image Analyst
Image Analyst 2013년 2월 18일
Just do it a frame at a time. Of course there are fancier ways involving time projection where you predict positions based on past frames but that's a lot more advanced. Just start with a frame at a time.
azan
azan 2013년 2월 18일
ok sir I will try it and then will let you know if I will be having some problem.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by