Rectify the error in imread

68 ビュー (過去 30 日間)
varsha reddy
varsha reddy 2018 年 7 月 8 日
コメント済み: Ataslina 2022 年 6 月 15 日
Whenever i try to execute this command: a=imread('itsarose.jpg'); It shows an error: Error using imread>get_full_filename (line 516) File "itsarose.jpg" does not exist.
Error in imread (line 340) fullname = get_full_filename(filename);
i just followed it with an imshow command , nothing much.I use MatlabR2018a. What can i do to rectify this?
  4 件のコメント
shital shinde
shital shinde 2019 年 8 月 25 日
eventhough I go for .jpg extenction, I got the same error. please give me the suggestion
Walter Roberson
Walter Roberson 2019 年 8 月 25 日
shital shinde, at the time you execute the imread(), which directory are you cd() to? What is the name you are passing to imread() ? What is the full path of where the file is actually stored?
Do you happen to be using dir() to find files that are underneath a subfolder? If so then when you are constructing the file name you might be forgetting to include the name of the subfolder.

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

回答 (3 件)

Star Strider
Star Strider 2018 年 7 月 8 日
Your 'itsarose.jpg' image has to be in the MATLAB search path for imread to find it. If it is not, you have to provide the full path to it in the file name.

Jan
Jan 2018 年 7 月 8 日
編集済み: Jan 2018 年 7 月 9 日
Do not work with relative paths and it is a bad idea to add folders to the path, because it can confuse Matlab substantially, if the added folders contain M-files. Prefer to use absolute paths instead. In which folder is the image file found?
Folder = 'C:\Temp';
a = imread(fullfile(Folder, 'itsarose.jpg'))
  2 件のコメント
Walter Roberson
Walter Roberson 2018 年 7 月 8 日
get_full_filename is an internal function of imread()
Jan
Jan 2018 年 7 月 9 日
編集済み: Jan 2018 年 7 月 9 日
@Walter: Thanks. I've removed the corresponding part from my answer.

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


Muhammad Usama Sharaf SAAFI
Muhammad Usama Sharaf SAAFI 2020 年 1 月 24 日
Your image file must me in MATLAB serach path. You should keep your image file in current folder. If you are confused you should give full file name like this
dir = 'C:\Temp\Users'; %give directory of image
image_read = imread(fullfile(dir, 'image_name.jpg'));
  1 件のコメント
Ataslina
Ataslina 2022 年 6 月 15 日
Thank you very much!

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

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by