How to extract features from an image
이전 댓글 표시
Sir/madam..
I am new to matlab and my point of interest is image processing...
How to extract color feature from an image..??
Please guide me through this...
Many thanks, Rohit
답변 (2개)
Sean de Wolski
2011년 4월 12일
Isolate the channel of the color you care about and threshold. E.g. for blue:
M = Irgb(:,:,3)>56; %map of pixels with some blue
fatin abbas
2011년 4월 29일
0 개 추천
you can compute the color histogram as a color feature , moment color feature , you can compute the color feature as global feature ( it is mean from whole image )or as local feature (partition the image to many parts )and compute the color feature for each feature in this case you can use one or two part in you processing ...
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!