-
Notifications
You must be signed in to change notification settings - Fork 1
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
Replaced minimaze_ar.world with a new one containing AR markers that … #40
base: melodic-devel
Are you sure you want to change the base?
Conversation
…ar_track_alvar can detect. Added a launch file for the world. Added AR tag models used by the world.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add a new README.md into the models folder to reference the tool/repp used for generating the models.
launch/world_minimaze_ar.launch
Outdated
<arg name="__ns" default=""/> | ||
<arg name="world" default="$(find robotont_gazebo)/worlds/minimaze_ar.world" /> | ||
<arg name="x_pos" default="2"/> | ||
<arg name="model" default="robotont_gazebo_nuc"/> | ||
<env name="GAZEBO_MODEL_PATH" value="$(find robotont_gazebo)/models:$GAZEBO_MODEL_PATH" /> | ||
<include file="$(find gazebo_ros)/launch/empty_world.launch"> | ||
<arg name="world_name" value="$(arg world)"/> | ||
</include> | ||
<include file="$(find robotont_gazebo)/launch/upload_description.launch"> | ||
<arg name="__ns" value="$(arg __ns)"/> | ||
<arg name="model" default="$(arg model)"/> | ||
</include> | ||
<!-- topic for 3d_mapping --> | ||
<node if="$(eval model == 'robotont_gazebo_nuc')" name="relay" type="relay" pkg="topic_tools" args="camera/depth/image_rect_raw camera/aligned_depth_to_color/image_raw" /> | ||
|
||
<include file="$(find robotont_gazebo)/launch/spawn_urdf.launch" > | ||
<arg name="x_pos" value="$(arg x_pos)" /> | ||
</include> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
launch-file seems overly complicated. try following the modular logic of ROS and our robotont packages. i can't think of any reason why this launch-file should not be copying the structure of world_minimaze.launch
…ar_track_alvar can detect. Added a launch file for the world. Added AR tag models used by the world.