Azzera filtri
Azzera filtri

Go back inside a for loop

3 visualizzazioni (ultimi 30 giorni)
Jose Andrés
Jose Andrés il 22 Giu 2015
Commentato: Jose Andrés il 25 Giu 2015
Hello everyone, I have created this function to show multiple dicom images and select one of them:
for z=1:size(read)
archive = read(z).name;
R3 = (dicomread(archive));
imshow(R3);
set(gcf, 'units','normalized','outerposition',[0 0 1 1]);
promptMessage = sprintf('Select the first image\nmanually');
titleBarCaption = 'Manual';
button = questdlg(promptMessage, titleBarCaption, ...
'Next', 'Select', 'Previous', 'Next');
if strcmpi(button, 'Previous')
¿¿??
end
if strcmpi(button, 'Select')
%I execute the code
end
end
My question is: how could I go back to the previous image when I push the "Previous" button without to break the for loop? What should I modify?
Thank you so much.

Risposta accettata

Walter Roberson
Walter Roberson il 24 Giu 2015
z = 1;
while z <= length(read)
archive = read(z).name;
R3 = (dicomread(archive));
imshow(R3);
set(gcf, 'units','normalized','outerposition',[0 0 1 1]);
promptMessage = sprintf('Select the first image\nmanually');
titleBarCaption = 'Manual';
button = questdlg(promptMessage, titleBarCaption, ...
'Next', 'Select', 'Previous', 'Next');
if strcmpi(button, 'Previous')
z = z - 1;
continue;
end
if strcmpi(button, 'Next')
z = z + 1;
continue;
end
if strcmpi(button, 'Select')
%I execute the code
....
break; %leave while loop
end
end
  2 Commenti
Image Analyst
Image Analyst il 25 Giu 2015
read() is the name of a built-in function so he probably doesn't want to use that.
Jose Andrés
Jose Andrés il 25 Giu 2015
It works perfectly! Thank you so much again, you are amazing.
The real directory name is called "lee_archivos" because I'm spanish, and I had to change some names (like 'Next', 'Previous'...) here in my Question in order to make it clearer for everyone. Thank you anyway!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by