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 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!