Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mobile_robotics
ADC
ADC_2018
iri_color_calibration
Commits
23c5aafe
Commit
23c5aafe
authored
Oct 26, 2018
by
Fernando Herrero
Browse files
Update launchs
parent
9df294a0
Changes
3
Hide whitespace changes
Inline
Side-by-side
launch/color_calibration.launch
View file @
23c5aafe
<!-- -->
<launch>
<arg name="camera_name" value="usb_cam"/> <!-- usb_cam, camera/rgb -->
<include file="$(find iri_blob_detector)/launch/blob_detector.launch" />
<arg name="camera" default="usb_cam"/> <!-- camera/rgb, usb_cam -->
<node pkg ="iri_color_calibration"
type="iri_color_calibration"
name="color_calibration"
output="screen">
<remap from="~/original_image/image_raw" to="/$(arg camera)/image_raw"/>
<remap from="~/original_image/camera_info" to="/$(arg camera)/camera_info"/>
<remap from="~/segmented_image/image_raw" to="/blob/image_out/image_raw"/>
<remap from="~/segmented_image/camera_info" to="/blob/image_out/camera_info"/>
<remap from="~/set_filter" to="/blob/set_filter"/>
<remap from="~/blobs" to="/blob/blobs"/>
</node>
<include file="$(find iri_blob_detector)/launch/node.launch">
<arg name="node_name" value="blob_detector"/>
<arg name="param_file" value="sample.yaml"/>
<arg name="param_path" value="$(find iri_blob_detector)/config"/>
<arg name="camera_name" value="$(arg camera_name)"/>
<arg name="blobs_topic" value="blob_detector/blobs"/>
</include>
<include file="$(find iri_color_calibration)/launch/node.launch">
<arg name="node_name" value="iri_color_calibration"/>
<arg name="camera_name" value="$(arg camera_name)"/>
<arg name="blobs_topic" value="blob_detector/blobs"/>
<arg name="set_filter_service" value="blob_detector/set_filter"/>
</include>
</launch>
</launch>
\ No newline at end of file
launch/color_calibration_sim.launch
deleted
100644 → 0
View file @
9df294a0
<!-- -->
<launch>
<include file="$(find iri_blob_detector)/launch/blob_detector_sim.launch" />
<arg name="camera" default="usb_cam"/> <!-- camera/rgb, usb_cam -->
<node pkg ="iri_color_calibration"
type="iri_color_calibration"
name="color_calibration"
output="screen">
<remap from="~/original_image/image_raw" to="/$(arg camera)/image_raw"/>
<remap from="~/original_image/camera_info" to="/$(arg camera)/camera_info"/>
<remap from="~/segmented_image/image_raw" to="/blob/image_out/image_raw"/>
<remap from="~/segmented_image/camera_info" to="/blob/image_out/camera_info"/>
<remap from="~/set_filter" to="/blob/set_filter"/>
<remap from="~/blobs" to="/blob/blobs"/>
</node>
</launch>
launch/node.launch
0 → 100644
View file @
23c5aafe
<?xml version="1.0"?>
<!-- -->
<launch>
<arg
name=
"node_name"
default=
"iri_color_calibration"
/>
<arg
name=
"camera_name"
default=
"usb_cam"
/>
<arg
name=
"blobs_topic"
default=
"blobs"
/>
<arg
name=
"set_filter_service"
default=
"set_filter"
/>
<arg
name=
"camera_info_topic"
default=
"/$(arg camera_name)/camera_info"
/>
<arg
name=
"image_topic"
default=
"/$(arg camera_name)/image_raw"
/>
<node
pkg =
"iri_color_calibration"
type=
"iri_color_calibration"
name=
"$(arg node_name)"
output=
"screen"
>
<remap
from=
"~/original_image/image_raw"
to=
"/$(arg image_topic)"
/>
<remap
from=
"~/original_image/camera_info"
to=
"/$(arg camera_info_topic)"
/>
<remap
from=
"~/segmented_image/image_raw"
to=
"/blob/image_out/image_raw"
/>
<remap
from=
"~/segmented_image/camera_info"
to=
"/blob/image_out/camera_info"
/>
<remap
from=
"~/set_filter"
to=
"$(arg set_filter_service)"
/>
<remap
from=
"~/blobs"
to=
"$(arg blobs_topic)"
/>
</node>
</launch>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment