フィルターのクリア

Why do i get this error ??

1 回表示 (過去 30 日間)
dp sb
dp sb 2015 年 7 月 21 日
コメント済み: dp sb 2015 年 7 月 21 日
I am trying to run a batch process and i get this error while reading, why is that ??
Code:
files = dir('C:\Project\Research\Image\Reel_3\*.tif');
for k = 1:numel(files)
I = imread(files(k).name);
.
.
.
Error
Error using imread (line 349)
File "00585_1u.tif" does not exist.
Error in FaultImageFind (line 3)
I = imread(files(k).name)
Those files do exist in the folder and i could get all the info using files(), files().name but i just wonder why it throws an error while reading ? Could be a silly mistake but can't figure it out!!

採用された回答

Walter Roberson
Walter Roberson 2015 年 7 月 21 日
folder = 'C:\Project\Research\Image\Reel_3';
files = dir(fullfile(folder, '*.tif'));
I = imread(fullfile(folder, files(k).name));
  1 件のコメント
dp sb
dp sb 2015 年 7 月 21 日
Thank You!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by