フィルターのクリア

Feature extraction in 300 images -MATLAB coding?

1 回表示 (過去 30 日間)
MARIA MALAKOPOULOU
MARIA MALAKOPOULOU 2020 年 12 月 15 日
コメント済み: Image Analyst 2020 年 12 月 19 日
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 Center および File ExchangeImage Data Workflows についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by