Hi,
Odometry parameters cannot be modified by rtabmapviz. We should set them in arguments of the odometry node or use param tags. For a list of odometry parameters, see Visual and Lidar odometry section on wiki:
http://wiki.ros.org/rtabmap_ros#Visual_and_Lidar_Odometry
$ rosrun rtabmap_ros rgbd_odometry --params
You then use them like one of these two ways (argument or param):
<node pkg="rtabmap_ros" type="rgbd_odometry" name="odometry" args:="--Odom/Strategy 0">
<param name="Odom/Strategy" value="0"/>
</node>
When using rtabmap.launch:
$ roslaunch rtabmap_ros rtabmap.launch odom_args:="--Odom/Strategy 0"
cheers,
Mathieu