Draw Multiple 3D segment in one plot
4 views (last 30 days)
Show older comments
I have a 1024x1024x21 3D image. I divide the it into multiple parts and segment them in 3D. At the end I have multiple segmented 3D objects in cell such that for each segment I have:
- OV, structure containing faces and vertices
- Corresponding position of the segment
Through patch(OV), we can plot it in 3D. But I want to plot all the segments together in their corresponding positions. Can someone help?
2 Comments
DGM
on 2 May 2021
If you can plot one patch, why can't you just plot all of them? What's wrong with just setting
hold on;
and plotting the next one, and so on?
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!