Sample a 3D surface

6 次查看(过去 30 天)
Good morning, I have a png image and I would like to get a 3D point cloud from it.
Up until now, I' ve imported the image, I' ve converted it in a grayscale image and generated a mesh from it as follows.
heightmap = imread('C:\Users\carmine\OneDrive\Desktop\heightmap.png');
imshow(heightmap);
b = rgb2gray(heightmap);
b = im2double(b);
imshow(b);
shading interp
f=mesh(b);
The problem is that I can't obtain a points cloud from this surface. With python it was possible to use this command:
mesh.sample(num_of_points)
Do you agree with my procedure? In this case I just have to sample the surface in an arbitrary number of points.
Is there another way to reconstruct directly the 3D points cloud from the rgb image or from the grayscale one?

采纳的回答

Turlough Hughes
Turlough Hughes 2020-9-24
编辑:Turlough Hughes 2020-9-24
If I understand correctly, you just want to generate some x,y values that match your z values (i.e. b):
[x,y] = meshgrid(1:size(b,2),1:size(b,1));
You can then plot the 3d point cloud with scatter3:
scatter3(x(:),y(:),b(:),[],b(:),'.')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Point Cloud Processing 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by