How can i read and show multiple DICOM images of CT in GUI MATLAB
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi All
i have 299 DICOM images of CT.these DICOM imges are in folder. i can read and show one image at a time using this code.
'D3D_open_Callback(hObject, eventdata, handles)'
'handles.output = hObject;'
'[fn pn] = uigetfile('*.dcm','select dcm file');'
'complete = strcat(pn,fn);'
'set(handles.slider1,'string',complete);'
'I = dicomread(complete);'
imshow(I,[]);'
'guidata(hObject, handles);'
but i want to read all DICOM images into GUI. i want to open the menu editor, menu editor will be used just to browse the file and display all images in Axis and by clicking slider i wanna get new image one by one in GUI MATLAB.
댓글 수: 0
채택된 답변
Amith Kamath
2013년 8월 19일
http://www.mathworks.com/matlabcentral/fileexchange/29344-read-medical-data-3d may be useful, however, I have not tried it yet.
댓글 수: 2
Amith Kamath
2013년 8월 19일
http://blogs.mathworks.com/videos/category/gui-or-guide/ are the best I've come across.
추가 답변 (1개)
Walter Roberson
2013년 8월 19일
uigetdir() to get the directory name. After that, http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 DICOM Format에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!