Filter löschen
Filter löschen

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

6 Ansichten (letzte 30 Tage)
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,

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 24 Sep. 2022
Verschoben: Walter Roberson am 24 Sep. 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 Kommentare
Walter Roberson
Walter Roberson am 26 Sep. 2022
Is load_image_at_index a method of your class ?
You do not show how you are calling dicomread() after this revision
María Pérez Fernández
María Pérez Fernández am 3 Okt. 2022
It has finally worked, thank you very much for your answer.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu DICOM Format finden Sie in Help Center und File Exchange

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by