insert variable k value into new variable names

2 Ansichten (letzte 30 Tage)
Daniel Kazal
Daniel Kazal am 3 Mai 2021
Bearbeitet: Rik am 3 Mai 2021
Hello,
I have a folder of tif files with sequential names (on_1, on_2, off_1, off_2, etc.) I have a script to process each trial set of images. Currently I manually change the value of all the image file names in the script.
Is there a way to simply create a variable k at the beginning of the script, where is automatically changes the value in the name of all my variables (and file names) in the script.
example:
k=1
on(k)=imread('on_(k).tif');
on(k)=double(on(k);
figure; imshow(on(k));
Thanks
  1 Kommentar
Stephen23
Stephen23 am 3 Mai 2021
"...automatically changes the value in the name of all my variables..."
Changing variable names dynamically is slow, inefficient, complex, liable to bugs, and difficult to debug.
The neat, simple, efficient solution is to use indexing, just as the MATLAB documentation shows:

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Rik
Rik am 3 Mai 2021
Yes:
k=1;
on{k}=imread(sprintf('on_%d.tif',k));
on{k}=double(on{k});
figure; imshow(on{k});
The main point is to use a cell array if your elements are not the same size or data type.
  2 Kommentare
Daniel Kazal
Daniel Kazal am 3 Mai 2021
Bearbeitet: Rik am 3 Mai 2021
Very helpful thanks.
Is there a way to name the images in the cell array? I suppose if they are sequential it does not matter.
How would you call upon one of the elements within the array.
say the second image of a 1x3.
Rik
Rik am 3 Mai 2021
You should not name parts of variables. The file name is data and should be stored in a variable, not in the name of a variable.
You can create a new cell array that stores the names if you prefer to keep them around (e.g. if you had used dir to find all images in a folder).
You can access the variables the same way they are created here: on{2} will get the second element of the cell array on.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by