Feature extraction in 300 images -MATLAB coding?

2 次查看(过去 30 天)
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!

采纳的回答

Image Analyst
Image Analyst 2020-12-15
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 个评论
MARIA MALAKOPOULOU
MARIA MALAKOPOULOU 2020-12-19
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 2020-12-19
You need to use allFileNames
thisFileName = fullfile(myfolder, allFileNames {k});

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by