Add Gaussian noise to mesh or point cloud
    7 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    gaetano mallardo
 am 12 Apr. 2019
  
    
    
    
    
    Kommentiert: gaetano mallardo
 am 13 Apr. 2019
            There is a function to generete 3d gaussian noise in mesh or point cloud??
0 Kommentare
Akzeptierte Antwort
  Brian Hart
      
 am 12 Apr. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Point Cloud Processing finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

