Hi,
Do you refer to output cloud (PointCloud2) from rtabmap node or rviz/rtabmapviz cloud visualization. You can attach a screenshot to see which cloud you are talking about. The post above was about rendering in rtabmapviz or rtabmap standalone GUI, for which parameters are in Preferences->3D rendering.
For rtabmap node, parameters are:
$ rosrun rtabmap_ros rtabmap --params | grep Grid/
"Grid/NoiseFilteringRadius" and "Grid/NoiseFilteringMinNeighbors" should both set to filter noisy points. See this
page for information about the algorithm used. Note that radius filtering is done after voxel filtering (by default the map is voxelized at 5 cm).
For the maximum depth "Grid/DepthMax", the default is 4 meters.
Example:
$ roslaunch rtabmap_ros rtabmap.launch rtabmap_args:="--delete_db_on_start --Grid/NoiseFilteringRadius 0.15 --Grid/NoiseFilteringMinNeighbors 2 --Grid/DepthMax 3"
Note that with realsense ros node (don't remember where someone told this), it is possible to tune the output to get already less noise in depth image before it is being used by rtabmap.
cheers,
Mathieu