Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

doubt in accessing cell arrays?

조회 수: 1 (최근 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