How to remove this error "

3 views (last 30 days)
harpreet
harpreet on 1 May 2015
Commented: Image Analyst on 30 Mar 2022
Hi, i am working on a matlab code having multiple function folders. When i run the script file named 'run_F220experiment' I get the following error:-
Error using textread (line 166) File not found.
Error in run_F220_experiment (line 16) [ImageName, GT] = textread(fullfile(db_dir,DB,file_ground_truth), '%s %d');
How can i proceed now...? kindly help
  6 Comments
John D'Errico
John D'Errico on 1 May 2015
I've removed textread.txt, although I would point out that it was named textread.txt. It was not an m-file, but a .txt file. That MAY have been part of the problem.
Stephen23
Stephen23 on 1 May 2015
What exactly are "function folders" ? How is this script run?

Sign in to comment.

Answers (3)

Jan
Jan on 1 May 2015
Edited: Jan on 1 May 2015
The file you want to read does not exist. Set a breakpoint and check this:
exist(fullfile(db_dir, DB, file_ground_truth), 'file')

Image Analyst
Image Analyst on 1 May 2015
You might try textscan(). textread() has been deprecated. But the real problem is that your filename is not exactly what you think it should be. Here, put this code instead of the call to textread()
fullFileName = fullfile(db_dir, DB, file_ground_truth)
if ~exist(fullFileName, 'file')
errorMessage = sprintf('Error: file does not exist:\n%s\nPlease check the spelling very carefully.', fullFileName);
uiwait(warndlg(errorMessage));
else
data = textscan(....................
end

gaurav gavande
gaurav gavande on 30 Mar 2022
Hi, i am working on a matlab code having fingerprint extraction . When i run the script file named 'fingerprintextraction' I get the following error
File "C:\gaurav\my fingerprint.TIFF" does not exist.
Error in imread (line 371)
fullname = get_full_filename(filename);
How can i proceed now...? kindly help
  1 Comment
Image Analyst
Image Analyst on 30 Mar 2022
Either put that file in that folder, or change the file name to one that DOES exist.

Sign in to comment.

Products

Community Treasure Hunt

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

Start Hunting!