How to increase slice thickness?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi I reconstruct the three planes using the below code. As you can see, when run it, it comes up with 2 thin bars of the sagittal and coronal planes. I want to expand them. Not being too thin. Imresize does not work, 'cause, it just expands the width of the pixels, making it look like a distorted one and keeps the same column-bar size. I want a bigger bar size. How do I do that?
D=squeeze(D); Ds=smooth3(D);
figure, imshow(Ds(:,:,N),[]); %transverse plane title ('Axial Plane');
figure, imshow(squeeze(Ds(:,N,:)),[]'); %sagittal plane title ('Sagittal Plane');
figure, imshow(squeeze(Ds(N,:,:)),[]); % coronal plane title('Coronal Plane')
댓글 수: 0
답변 (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!