Info

此问题已关闭。 请重新打开它进行编辑或回答。

how do i resolve the imead issue?

1 次查看(过去 30 天)
DEBANGAN MITRA
DEBANGAN MITRA 2019-8-5
关闭: MATLAB Answer Bot 2021-8-20
i am trying to read images from a folder. using imread. and below is my code.
file = dir('E:\image _dataset\Circles');
NF = length(file);
images = cell(NF,1);
for i=3: NF
I = imread(fullfile('E:\image _dataset\Circles\', file(i).name));
end
while executing this i am getting the following error:
Error using imread (line 382)
Unable to determine the file format.
Error in Untitled2 (line 10)
I = imread(fullfile('E:\image _dataset\Circles\', file(i).name));

回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by