Feature extraction in 300 images -MATLAB coding?

1 view (last 30 days)
Hey! I have 300 medical images, which i want to read and export some features in order to make a excel file, which will contain 300 columns(300 images) and 4,5,6... rows(it depends how many features we have). After exporting this excel data, i want to play with some algorithms to find those who get the highest results. Any help? Thanks in advance!

Accepted Answer

Image Analyst
Image Analyst on 15 Dec 2020
Code snippets to process a sequence of files are in the FAQ. In the middle of the for loop, call your function that analyzes the image and save the results to an array. Write back if you can't figure it out.
  14 Comments
MARIA MALAKOPOULOU
MARIA MALAKOPOULOU on 19 Dec 2020
In this part i don't know what means but it ate my mind !
for k = 1 : numberOfFiles
thisFileName = fullfile(myfolder, filenames{k});
theseResults = ProcessSingleDicomFile(thisFileName)
allResults(k, :) = theseResults;
end
I have this error constantly:
"Brace indexing is not supported for variables of this type."
I have tried to change the most of the variables, that's why i asked yoy before for the ":", can help please?
Image Analyst
Image Analyst on 19 Dec 2020
You need to use allFileNames
thisFileName = fullfile(myfolder, allFileNames {k});

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!