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 中查找有关 Image Segmentation and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
