DICOM reconstruction AXIAL to CORONAL & SAGITTAL

조회 수: 35 (최근 30일)
Mahmoud Ghanim
Mahmoud Ghanim 2019년 3월 20일
댓글: Rik 2019년 3월 25일
How can I do the following with a file filled with 362 dicom AXIAL images of the abdomen.
-Display all slices, and an image of a user-specified slice.
-Extend functionality to display coronal and sagittal views, with user specified location.
I am assuming I should assign each dicom to an array and then display the images that way. I am inexperinced with MATLAB and coding in general. Any help would be appreciated.
Also I cannot use the any Toolbox.
  댓글 수: 12
Walter Roberson
Walter Roberson 2019년 3월 25일
One thing I worry about is the possibility that the data might be integer class, so multiplying by 288 might lead to overflow.
"288" looks dangerously magic. Why 288?
Extracting perpendicular views is just a matter of indexing, possibly with a squeeze() or permute() thrown in.
See also radon()
Rik
Rik 2019년 3월 25일
I guess boldly:
If the multiplication by 288 is intended to make your CT use more of the display range in terms of greyscale, you shouldn't do that by modifying the data. Instead you should modify the caxis. You can either write something yourself, or you can implement my WindowLevel FEX submission. (Also, in that assingment you posted I see nothing about not being allowed to use code from a toolbox or the FEX.)

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by