Loading images from a .MAT file

조회 수: 39 (최근 30일)
Tony
Tony 2014년 1월 16일
댓글: Jyoti Arora 2015년 12월 16일
i have this function which i used to save a folder of images into a .MAT file as a database. Now i want to load the images from the data to use them but its a struct so i tried converting using struct2cell and that didn't get me anywhere. I seen about 3 different ways to get this to work but non seem to work which made me thing maybe i saved them wrong?
So i want to make a loop that loads all images from this database. all images have the same dimensions and file type .jpg
folder = 'F:\matlab\face\data';
ListOfImageNames = {};
ImageFiles = dir([folder '/*.*']); % Get all files.
for Index = 1:length(ImageFiles)
baseFileName = ImageFiles(Index).name;
[folder, name, extension] = fileparts(baseFileName);
extension = upper(extension);
% Let's save just those we are interested in:
switch lower(extension)
case {'.png', '.bmp', '.jpg', '.tif', '.avi'}
% Allow only PNG, TIF, JPG, or BMP images
ListOfImageNames = [ListOfImageNames baseFileName];
otherwise
end
end
save('F:\matlab\face\testimagebase.mat','ListOfImageNames');

채택된 답변

Jacob Halbrooks
Jacob Halbrooks 2014년 1월 16일
The code shown only saves the names of the image files and not the image data itself. This is because the variable 'ListOfImageNames' is a cell array of names, and SAVE just stores it in the MAT-file as such.
If you want to save the actual image data, you should call IMREAD on each image to get its data into MATLAB, and then use SAVE for the actual data. One way to do this is to create a struct and add fields to this struct as you find and read images. Here's how that might look, based off of your code:
function saveImages(folder)
ListOfImageNames = {};
ImagesToSave = struct();
ImageFiles = dir([folder '/*.*']); % Get all files.
for Index = 1:length(ImageFiles)
baseFileName = ImageFiles(Index).name;
[folder, name, extension] = fileparts(baseFileName);
extension = upper(extension);
% Let's save just those we are interested in:
switch lower(extension)
case {'.png', '.bmp', '.jpg', '.tif', '.avi'}
% Allow only PNG, TIF, JPG, or BMP images
ListOfImageNames = [ListOfImageNames baseFileName];
ImagesToSave.(name) = imread(baseFileName);
otherwise
end
end
save('testimagebase.mat','-struct','ImagesToSave');
Now if you call LOAD on your MAT-file, you will be returned the same structure that you originally saved, with a field for each image containing its data:
>> saveImages(pwd)
>> myimages=load('testimagebase.mat')
myimages =
image1: [2178x2448x3 uint8]
myimage2: [676x1088x3 uint8]
  댓글 수: 6
poongothai rajan
poongothai rajan 2014년 4월 23일
dear image analyst ..when i run your code i am getting this error..can u plese clarify it
"Reference to non-existent field 'ListOfImageNames'."
Jyoti Arora
Jyoti Arora 2015년 12월 16일
Dear Image Analyst After Loading the .mat file if I am getting this output, groundTruth: {[1x1 struct] [1x1 struct] [1x1 struct] [1x1 struct] [1x1 struct] [1x1 struct] [1x1 struct]} how can I use it further in my code. Each struct represents segment of an image and I want to evaluate for my segmentation results.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

poongothai rajan
poongothai rajan 2014년 4월 23일
can u please anyone help how to convert the .mat file into image file..thanks in advance

Shaveta Arora
Shaveta Arora 2015년 6월 27일
i have .mat one file which is 1x1 struct. how to read the image from this.
  댓글 수: 1
Image Analyst
Image Analyst 2015년 6월 27일
Call load to read the mat file into a structure:
storedStruct = load(yourFileName);
Now, if you had a structure that you stored when you called save() to create the mat file, then that structure will be a field of the storedStuct variable. You can extract it into a variable if you want:
myStruct = storedStruct.myStruct;

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by