convert 2D image to 3D image please
이전 댓글 표시
please how can I plot a 3D image using a 2D image. Please I need the code thankyou
댓글 수: 2
Sai Bhargav Avula
2019년 10월 30일
Can you some more details like the number of slices you have or what assumptions can be considered while converting
kay christopher
2019년 10월 30일
편집: kay christopher
2019년 10월 30일
답변 (2개)
Sai Bhargav Avula
2019년 10월 30일
0 개 추천
Hi,
This thread might help you <https://www.mathworks.com/matlabcentral/answers/31647-how-to-convert-2d-image-into-3d>
Sai Bhargav Avula
2019년 10월 31일
Since you have a single image of the bubble to get the 3D volume, you need to stack them together.
One way to stack them is as following
Image3D = repmat(Image2D, 1, 1, NumberOfLayers);
If you can get different images then you can use
Image3D = cat(3, Image2D1, Image2D2, Image2D3, ...);
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!