hi i hav set of 100 images and i want to store its feture vector in 100 rows each image is having 9 features.so pls tell me some easy method...thanks

1 view (last 30 days)
pls help me

Accepted Answer

Thorsten
Thorsten on 24 Nov 2014
This pseudo-code should give you a hint how to start:
for i = 1:100
imagename = ... % depending on how the images are named
F(i, :) = extract9features(imread(imagename));
end

More Answers (1)

Image Analyst
Image Analyst on 24 Nov 2014

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!