Codebase list ros-opencv-apps / cme/main test / test-hls_color_filter.test
cme/main

Tree @cme/main (Download .tar.gz)

test-hls_color_filter.test @cme/mainraw · history · blame

<launch>
  <arg name="gui" default="true" />
  <node name="play_face_bag" pkg="rosbag" type="play" args="-l $(find opencv_apps)/test/face_detector_withface_test_diamondback.bag" />

  <group ns="wide_stereo/left" >
    <node name="image_proc" pkg="image_proc" type="image_proc" />
    <node name="image_view" pkg="image_view" type="image_view" args="image:=image_rect_color" if="$(arg gui)" />

    <!-- color_filter.cpp  -->
    <include file="$(find opencv_apps)/launch/hls_color_filter.launch" >
      <arg name="debug_view" value="$(arg gui)" />
      <arg name="image" value="image_rect_color" />
      <arg name="h_limit_max" value="50" />
      <arg name="h_limit_min" value="30" />
      <arg name="s_limit_max" value="120" />
      <arg name="s_limit_min" value="30" />
      <arg name="l_limit_max" value="190" />
      <arg name="l_limit_min" value="120" />
    </include>

    <!-- Test Codes -->
    <node name="hls_color_filter_saver" pkg="image_view" type="image_saver" args="image:=hls_color_filter/image" >
      <param name="filename_format" value="$(find opencv_apps)/test/hls_color_filter.png"/>
    </node>
    <param name="hls_color_filter_test/topic" value="hls_color_filter/image" />
    <test test-name="hls_color_filter_test" pkg="rostest" type="hztest" name="hls_color_filter_test" >
      <param name="hz" value="20" />
      <param name="hzerror" value="15" />
      <param name="test_duration" value="5.0" />
    </test>
  </group>
</launch>