- imagesc: https://www.mathworks.com/help/matlab/ref/imagesc.html
- imshow: https://www.mathworks.com/help/images/ref/imshow.html
Plot 2D image on 3D by the use of isonormals
조회 수: 11 (최근 30일)
이전 댓글 표시
How can I plot the saggital image on xz refence plane when I used isonormals to plot an 3D recontruction?
set ( handles.axes2, 'NextPlot', 'Replace')
imagesc ( imagen_rotada_a_graficar)
axis image
colormap gray
Ds = smooth3(mascaracontorno3D2);
fv = isosurface(Ds,0);
hiso = patch(fv, 'FaceColor', [0.6350 0.0780 0.1840], 'Edgecolor', 'none');
isonormals(Ds, hiso)
Ds1 = smooth3(mascaracontorno3D);
axis tight
camlight
camlight(-80,-10)
lighting gouraud
view(3)
daspect([1,1,1])

댓글 수: 0
답변 (1개)
Akshat Dalal
2025년 2월 25일
Hi José,
You can plot this by utlizing the volume data you used for creating the 3D plot. Extract the sagittal slice from your volume data. The sagittal slice is typically taken along the Y-axis, meaning you will fix the Y value and vary X and Z. You can then use the 'imagesc' or 'imshow' functions to plot this slice in the XZ plane. Please refer the following documentation for more information:
Hope this helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Volume Visualization에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!