in workspace i have "dinfo" having 11x1 struct as shown in figure, i want to access "name" as it has images in it, after reading that, need to convert it into double format for each image and storing that in a folder as "dataset.mat", can anyone please help me with the code please. Thank You

3 Comments

I didn't understand the part which you explained so i changed the question so that some other can understand what i have asked. Thank You
Rik
Rik on 18 Apr 2017
If you don't understand an answer, ask for clarification. By opening multiple questions that are essentially the same, you don't really generate goodwill. I think you should really start a tutorial to get to know the Matlab basics. I'm sure there are many of them in whatever language you prefer.

Sign in to comment.

 Accepted Answer

Rik
Rik on 18 Apr 2017
You're in luck. I usually ignore questions that don't show that the person asking has followed the advice from the question guide.
Images=cell(1,2);%pre-allocate a column-vector in the cell format
for n=1:length(dinfo)
position=str2double(dinfo(n).name(1:(end-4)));%convert the filename to a number
Images{position}=im2double(imread(dinfo(n).name));%read the image, convert to double and save in the cell
end

4 Comments

Thank you very much for your reply i will surely follow the instructions, unfortunately i am getting this error "Subscript indices must either be real positive integers or logicals."
sir, its working when the dinfo has 11x1 struct but not when i increased it to 24x1 struct, its showing this error "Subscript indices must either be real positive integers or logicals"
Jan
Jan on 18 Apr 2017
@Tousif: Please post the relevant code and the complete error message.
clc; clear all; %%
dinfo = dir('*.jpg');% image extension
%images=cell(1,2);%pre-allocate a column-vector in the cell format for n=1:length(dinfo) position=str2double(dinfo(n).name(1:(end-4)));%convert the filename to a number images{position}=double(imread(dinfo(n).name));%read the image, convert to double and save in the cell
end
I have 50 training
images of size 27x18, 4 test images of same size
example :if u type "load wine_database.mat", we get training and test in double format, i need the images to be in that format so that i can use it for "nprtool/nntool"
</matlabcentral/answers/uploaded_files/75443/wine.PNG>. I need in the format as shown in the reference image. I hope you are understanding what i am asking you

Sign in to comment.

More Answers (0)

Categories

Find more on Historical Contests in Help Center and File Exchange

Asked:

on 18 Apr 2017

Commented:

Rik
on 18 Apr 2017

Community Treasure Hunt

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

Start Hunting!