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!