About edge detection

조회 수: 2 (최근 30일)
Priyanka
Priyanka 2012년 1월 25일
How to find RGB image edge detection using directional operator method?

채택된 답변

Chandra Kurniawan
Chandra Kurniawan 2012년 1월 25일
Hi, Priyanka
Generally, you can perform edge detection with edge command from Matlab.
Which operator? Sobel, prewitt, canny, or what?
I = imread('tape.png');
Igray = rgb2gray(I);
Iedge = im2uint8(edge(Igray,'canny',0.2));
Iedge = repmat(Iedge,[1 1 3]);
Ifinal = I + Iedge;
imshow(Ifinal);
  댓글 수: 2
Priyanka
Priyanka 2012년 1월 27일
Thanks my friend.
Actually my project is A color YUV Image Edge Detection Method Based On Histogram Equalization Transformation. The main idea about this project is YUV image edge detection gives better result than RGB image edge detection. this project contains following steps
1>RGB image edge detection using
a>Directional operator method
b>component gradient operator
2>RGB to YUV color space conversion.
3>YUV image edge detection.
My project is one of the working IEEE paper.
If u know something about this plz reply me. can u give me your email address? So I can email my project paper to you.So you eaisly understand what exactly this project contains.
Priyanka
Priyanka 2012년 1월 27일
Gradient operators which are used here
1>Sobel gradient operator
2>Laplace gradient operator

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

추가 답변 (0개)

제품

Community Treasure Hunt

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

Start Hunting!

Translated by