How to display *.obj or *.png files on a figure window?
86 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I have some 3D scans of some objects in *.png or *.obj formats. How can I display them in a figure window? thank you.
0 commentaires
Réponse acceptée
Richard Quist
le 15 Nov 2012
I'm not sure about the .obj files, but for .png files something like the following should work to display the image in the current axes:
img = imread('foo.png');
image(img);
For more options/details, run:
help imread
help image
Plus de réponses (1)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!