About RGB image edge detection
이전 댓글 표시
How to find edge detection of RGB image using component gradient operator like sobel gradient and laplace gradient operator?
답변 (1개)
Image Analyst
2012년 1월 30일
2 개 추천
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
Image Analyst
2015년 11월 12일
I'm attaching my local Delta E color edge detector in case anyone wants it.
카테고리
도움말 센터 및 File Exchange에서 Object Analysis에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!