Add Gaussian noise to mesh or point cloud

31 visualizaciones (últimos 30 días)
gaetano mallardo
gaetano mallardo el 12 de Abr. de 2019
Comentada: gaetano mallardo el 13 de Abr. de 2019
There is a function to generete 3d gaussian noise in mesh or point cloud??

Respuesta aceptada

Brian Hart
Brian Hart el 12 de Abr. de 2019
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 comentarios
gaetano mallardo
gaetano mallardo el 13 de Abr. de 2019
there is a way to oparate using mu and sigma?
gaetano mallardo
gaetano mallardo el 13 de Abr. de 2019
Thank you Brian for your answer.
I have find this in the matlab documentation fo compleate my research.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Point Cloud Processing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by