필터 지우기
필터 지우기

How to mapp a 3D point cloud on 2D plane

조회 수: 14 (최근 30일)
Struct03
Struct03 2014년 11월 24일
댓글: Penny 2017년 12월 11일
Hi I have a matrix with 3D point cloud (each column contains coordinate x,y,z). What I want to do is map 3d points onto 2d plane (with specific size of plane i.e. 4000x4000 and according to proper coordinates). In short: I rotate, scale, translate a point cloud, and than I want to map(project)one view from specific direction onto plane. As a result I want to obtain a kind of binary mask of the object. (I think function 'view' which is used to visualisation do something pretty similar) How should i solve this problem? Thank you for all help.

답변 (1개)

Matt J
Matt J 2014년 11월 24일
편집: Matt J 2014년 11월 24일
If column vectors u and v are an orthogonal basis for your plane,
newpoints = Cloud3D*[u,v];
  댓글 수: 5
Matt J
Matt J 2017년 12월 11일
Hi Penny,
You would do,
newpoints = A*uv*uv.';
Penny
Penny 2017년 12월 11일
Got it Matt. Thank you very much.

댓글을 달려면 로그인하십시오.

카테고리

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