How to extract features from an image
Show older comments
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
Answers (2)
Sean de Wolski
on 12 Apr 2011
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
on 29 Apr 2011
0 votes
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 ...
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!