How to draw voxel image?
Afficher commentaires plus anciens
I have a 3D matrix of size 498*201*151 containing binary data(1s and 0s) How can I draw a voxel image out of this data?
1 commentaire
Badreddine Alane
le 23 Mai 2019
if you had found the way to plot this voxel image, please let me know i need it
Réponses (1)
Sean de Wolski
le 15 Avr 2015
doc isosurface
Is probably a good first bet
3 commentaires
kmsimage
le 22 Avr 2015
Sean de Wolski
le 22 Avr 2015
define "it doesn't work" it does work for me:
x = rand(10,10,10)>0.5;
patch(isosurface(x,0.5),'FaceColor','r','EdgeColor','none')
view(30,30)
Iuliu Ardelean
le 10 Juin 2022
works A1 okey-dokey thank you
Catégories
En savoir plus sur Image Processing Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!