About edge detection

1 visualización (últimos 30 días)
Priyanka
Priyanka el 25 de En. de 2012
How to find RGB image edge detection using directional operator method?

Respuesta aceptada

Chandra Kurniawan
Chandra Kurniawan el 25 de En. de 2012
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 comentarios
Priyanka
Priyanka el 27 de En. de 2012
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 el 27 de En. de 2012
Gradient operators which are used here
1>Sobel gradient operator
2>Laplace gradient operator

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by