3d reconstruction from single 2d image ?
古いコメントを表示
hello mathworkers can someone help me i have a .ppm image and i want to create 3d mesh (get x, y, z values)
回答 (1 件)
Walter Roberson
2018 年 4 月 24 日
im = imread('cameraman.tif');
[X,Y] = ndgrid(1:size(im,2), 1:size(im,1));
mesh(X,Y,im)
view([70 69])
カテゴリ
ヘルプ センター および File Exchange で Read, Write, and Modify Image についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
