How to display *.obj or *.png files on a figure window?
90 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Richard Quist
2012 年 11 月 15 日
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
その他の回答 (1 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!