Azzera filtri
Azzera filtri

Loading multiple DICOM images in App Designer and switching between them,

6 visualizzazioni (ultimi 30 giorni)
Hello,
I am creating an app using App Designer and I would like to be able to browse several DICOM images at the same time. I need the first one to show in the first place and then to be able to change to the next one by pressing a button.
Right now I have the code for browsing and showing only one DICOM file as it follows:
[fn, pn] = uigetfile({'*.dcm'},'select dicom file');
complete = strcat(pn,fn);
I = dicomread(complete);
imshow(I,[],'Parent',app.UIAxes);
I also have a button called "Next image", but I'm begginer and quite lost on how to achive what I need,

Risposta accettata

Walter Roberson
Walter Roberson il 24 Set 2022
Spostato: Walter Roberson il 24 Set 2022
I suggest that you use MultiSelect with uigetfile. Test the results to see if isnumeric(fn) and if so then the user cancel. Then fn=cellstr(fn); to make it easier to handle the case that the user selected exactly one file.
Now keep an app property which is the index of the current image. You could use a slider or a drop box to have the user select an image. In the callback, get the new value, make sure that it is in range, set the mentioned app property to the new index, and use the index to pull out the filename and display it.
Also please use fullfile() to build file names. uigetfile does not always put a directory separator at the end of the path it returns.
  5 Commenti
Walter Roberson
Walter Roberson il 26 Set 2022
Is load_image_at_index a method of your class ?
You do not show how you are calling dicomread() after this revision

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su DICOM Format in Help Center e File Exchange

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by