필터 지우기
필터 지우기

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

조회 수: 6 (최근 30일)
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,

채택된 답변

Walter Roberson
Walter Roberson 2022년 9월 24일
이동: Walter Roberson 2022년 9월 24일
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
Walter Roberson
Walter Roberson 2022년 9월 26일
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 2022년 10월 3일
It has finally worked, thank you very much for your answer.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 DICOM Format에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by