Sample a 3D surface

조회 수: 6 (최근 30일)
Carmine Buonagura
Carmine Buonagura 2020년 9월 24일
편집: Turlough Hughes 2020년 9월 24일
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