Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一组用于制作断层扫描的投影 2D 图像(双格式)。我使用了 iradon 并沿 (XZ) 创建了一个断层扫描仪。现在我需要将其中的一些层(比如每 10 层)堆叠到一个新的 3D 空间中以进行可视化。请提出一种方法来做到这一点。
您可以使用meshgrid,surf例如:
meshgrid
surf
A = rand(10); %Your images [X, Y] = meshgrid(1:size(A,1), 1:size(A,2)); Z1 = ones(size(A))*10; surf(X,Y,Z1,A) Z2 = ones(size(A))*1; hold on surf(X,Y,Z2,rand(10))
这也可能让你感兴趣