Problem about DICOM Image GUI
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
KHOR WEI KOK
el 26 de Mzo. de 2016
Editada: Walter Roberson
el 2 de Abr. de 2016
how can i insert list of dicom images into listbox and display in one of axes?? I have a folder containg dicom images and i want to insert list of images into the listbox. Any example for GUI DICOM images?
0 comentarios
Respuesta aceptada
Walter Roberson
el 27 de Mzo. de 2016
dinfo = dir('*.dcm');
dcm_files = {dinfo.name};
set( handles.listbox1, 'String', dcm_files);
...
function listbox1_Callback(src, event, handles)
box_choices = get(src, 'String');
box_chosen = get(src, 'Value');
file_chosen = box_choices{box_chosen};
[ImageData, ImageMap] = imread(file_chosen);
imshow( ImageData, ImageMap, 'Parent', handles.axes_to_display_in);
axis(handles.axes_to_display_in, 'image');
3 comentarios
Walter Roberson
el 27 de Mzo. de 2016
That is a proper example. Just change "listbox1" to the Tag you used for your listbox, and change "axes_to_display_in" to the tag you used for the axes to display the image in.
KHOR WEI KOK
el 2 de Abr. de 2016
Editada: Walter Roberson
el 2 de Abr. de 2016
Más respuestas (0)
Ver también
Categorías
Más información sobre DICOM Format en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!