Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix human_detector.launch #1

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 5 additions & 21 deletions jsk_2022_10_semi/launch/human_detector.launch
Original file line number Diff line number Diff line change
@@ -1,38 +1,22 @@
<launch>
<arg name="gui" default="true" />

<arg name="INPUT_PANORAMA_IMAGE" default="/dual_fisheye_to_panorama/output/quater" />
<arg name="INPUT_PANORAMA_IMAGE" default="/dual_fisheye_to_panorama/output" />
<arg name="INPUT_PANORAMA_INFO" default="/dual_fisheye_to_panorama/panorama_info" />
<arg name="INPUT_CLASS" default="/edgetpu_panorama_object_detector/output/class" />
<arg name="INPUT_RECTS" default="/edgetpu_panorama_object_detector/output/rects" />

<node pkg="tf" type="static_transform_publisher" name="camera_tf_publisher" args="0 0 0 0 0 -1.57 camera insta360_link 100" />
<node pkg="tf" type="static_transform_publisher" name="camera_tf_publisher" args="0 0 0 0 0 0 camera insta360_link 100" />

<include file="$(find jsk_perception)/sample/sample_insta360_air.launch">
<arg name="gui" value="false" />
<arg name="gui" value="false" />
<arg name="panorama_resolution_mode" value="low" />
</include>

<include file="$(find coral_usb)/launch/edgetpu_panorama_object_detector.launch">
<arg name="INPUT_IMAGE" value="/dual_fisheye_to_panorama/output"/>
<arg name="INPUT_IMAGE" value="/dual_fisheye_to_panorama/output"/>
</include>

<node
pkg="image_transport"
type="republish"
name="panorama_decompress"
args="compressed in:=/dual_fisheye_to_panorama/output raw out:=/dual_fisheye_to_panorama/output"
/>
<node
pkg="nodelet"
type="nodelet"
name="panorama_image_resize"
args="standalone image_proc/resize">
<param name="scale_height" value="0.5" />
<param name="scale_width" value="0.5" />
<remap from="image" to="/dual_fisheye_to_panorama/output" />
<remap from="~image" to="/dual_fisheye_to_panorama/output/quater" />
</node>

<!-- visualize output of object detector -->
<node
pkg="jsk_perception"
Expand Down