フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

doubt in accessing cell arrays?

3 ビュー (過去 30 日間)
neha viswanath
neha viswanath 2015 年 2 月 24 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
myFolder = 'E:\\inverted\\i1';
for PicNum = 100:-1:1;
fullFileName = fullfile(myFolder,sprintf('%d.bmp',PicNum));
fprintf(1, 'Now reading %s\n', fullFileName);
imageArray{PicNum}=imread(fullFileName);
logicalImage{PicNum}=imageArray{PicNum} ~=0;
for i=1:1:100
feature_extractor(logicalImage{1:PicNum});//in ans i need to get the values of all the images in <100*85> but i didnt get.
end
imshow(imageArray{PicNum}); % Display image.
end

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by