Replies: 2 comments 1 reply
-
Hi, how do you get the point clouds? |
Beta Was this translation helpful? Give feedback.
1 reply
-
@richardrl you could add noise once the data is captured. This could simulate the noise of the real point cloud capture. new_reading = []
for i in range(len(reading)):
read_w_err = reading[i] + (0.05*reading[i])
new_reading.append(read_w_err) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The pointclouds from the built-in pyBullet camera are quite clean. How do I get more realistic noise, such that these pointclouds look closer to real pointcloud cameras?
Beta Was this translation helpful? Give feedback.
All reactions