3D volume visualization through 2D slices of Tomography
조회 수: 4 (최근 30일)
이전 댓글 표시
I have some 2D images - reconstruction or transaxial slices of tomography - that I want to "put together" so I can build a 3D volume.
Does anyone know how to?
댓글 수: 0
채택된 답변
Matt J
2013년 8월 15일
You could use the CAT command, e.g.,
slice1=rand(10);
slice2=rand(10);
volume=cat(3,slice1,slice2);
댓글 수: 13
Matt J
2013년 8월 21일
편집: Matt J
2013년 8월 21일
I think the bottom line is that the 3D volume data that you feed to the 3D viewer code must not be pre-divided into color components. Each slice of the volume A(:,:,i) must represent an intensity distribution only. However, the intensity does not necessarily have to be as originally reconstructed from the tomograph. It sounds like you could apply all the post-transformations you mention to the 3D intensity distribution and then call that final 3D array of intensities your input volume to the viewer.
If f I've understood it right, then the bottom-line solution is simply to avoid intermediately storing the data as bitmap. The bitmap format splits the image into color channels, which it sounds like you don't need. So, store the transformed volume data to a .mat file instead.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Particle & Nuclear Physics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!