About RGB image edge detection

How to find edge detection of RGB image using component gradient operator like sobel gradient and laplace gradient operator?

Antworten (1)

Image Analyst
Image Analyst am 30 Jan. 2012

2 Stimmen

For starters you could use rgb2hsv and then run an edge detector on the V channel. This would detect edges in the luminance channel only. A better method might be to calculate "delta E" (the CIELAB color difference metric) between the center pixel and it's neighbors in a sliding window. You could use nlfilter() for that.

1 Kommentar

Image Analyst
Image Analyst am 12 Nov. 2015
I'm attaching my local Delta E color edge detector in case anyone wants it.

Melden Sie sich an, um zu kommentieren.

Produkte

Gefragt:

am 30 Jan. 2012

Kommentiert:

am 12 Nov. 2015

Community Treasure Hunt

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

Start Hunting!

Translated by