Add Gaussian noise to mesh or point cloud

31 ビュー (過去 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 Center および File ExchangePoint Cloud Processing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by