How to convert structure to variable seperately?
Mostrar comentarios más antiguos

I want to same effect. Like this,
a1 = imread('2015_01_26_1.jpg);
a2 = imread('2015_01_26_2.jpg);
a3 = imread('2015_01_26_3.jpg);
a4 = imread('2015_01_26_4.jpg);
I try this.
a = dir('C:~~~~~\*.jpg');
for i = 1 : length(a)
filename = strcat('C:~~~~\',a(i).name);
I = imread(filename);
end
how can I get same result?? I want to variables.
Respuestas (0)
Categorías
Más información sobre Convert Image Type en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!