viso2 couldn't find mono_odometer node
I download viso2 and build using rosmake. There was no error. However when I run it with following launch file.
<!-- example launch file for mono_odometer -->
<launch>
<arg name="camera"/> <!-- camera must be set at launch -->
<node name="image_proc" pkg="image_proc" type="image_proc" ns="$(arg camera)"/>
<node name="mono_odometer" pkg="viso2_ros" type="mono_odometer" output="screen">
<remap from="image" to="$(arg camera)/image_rect" />
<param name="camera_height" value="0.5" /> <!-- cam is 0.5m above ground -->
<param name="camera_pitch" value="0.0" /> <!-- cam is looking straight forward -->
</node>
</launch>
It gave this error "ERROR: cannot launch node of type [viso2_ros/mono_odometer]: can't locate node [mono_odometer] in package [viso2_ros]"
How could I fix this problem ?