필터 지우기
필터 지우기

Add Gaussian noise to mesh or point cloud

조회 수: 18 (최근 30일)
gaetano mallardo
gaetano mallardo 2019년 4월 12일
댓글: gaetano mallardo 2019년 4월 13일
There is a function to generete 3d gaussian noise in mesh or point cloud??

채택된 답변

Brian Hart
Brian Hart 2019년 4월 12일
You can generate normally-distributed random values with randn. For a point cloud for example, if you have 100 points with x, y, z values, you can create a noise array to add to the point array:
>> gaussNoise=randn(100,3);
>> scatter3(gaussNoise(:,1),gaussNoise(:,2),gaussNoise(:,3))
  댓글 수: 2
gaetano mallardo
gaetano mallardo 2019년 4월 13일
there is a way to oparate using mu and sigma?
gaetano mallardo
gaetano mallardo 2019년 4월 13일
Thank you Brian for your answer.
I have find this in the matlab documentation fo compleate my research.

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

추가 답변 (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