how to read images stored in mat files using variables

13 Ansichten (letzte 30 Tage)
Lakshmi
Lakshmi am 2 Aug. 2013
Kommentiert: Walter Roberson am 9 Nov. 2017
I have a set of images stored in mat file. In the program I have a variable using which i need to the corresponding image file in mat.
For Example :
I = imread('1.jpg');
J = imread('2.jpg');
save imgs.mat
a = 'I';
imshow(a); --- this should get the image I from mat file displayed. But I am getting the error message
Cannot find the specified file: "I"
How to do this ?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 2 Aug. 2013
input_data = load('imgs.mat', a);
imshow(input_data.(a))
  3 Kommentare
Melaku Eneayehu
Melaku Eneayehu am 7 Nov. 2017
Undefined function or variable 'a'

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by