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

Don't save segmentation data by default in the example world #1047

Merged
merged 1 commit into from
Sep 23, 2021
Merged
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
11 changes: 10 additions & 1 deletion examples/worlds/segmentation_camera.sdf
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<?xml version="1.0" ?>
<!--
Segmentation camera demo for visualizing the semantic & instance segmentation sensor output
Segmentation camera demo for visualizing the semantic & instance segmentation sensor output.

If you would like to save the data generated by the segmentation camera, uncomment the
<save> tags in the cameras of this SDF file.
-->
<sdf version="1.6">
<world name="shapes">
Expand Down Expand Up @@ -296,9 +299,12 @@
<near>0.1</near>
<far>100</far>
</clip>
<!-- uncomment these lines to save segmentation data -->
<!--
<save enabled="true">
<path>segmentation_data/instance_camera</path>
</save>
-->
</camera>
<always_on>1</always_on>
<update_rate>30</update_rate>
Expand Down Expand Up @@ -347,9 +353,12 @@
<near>0.1</near>
<far>100</far>
</clip>
<!-- uncomment these lines to save segmentation data -->
<!--
<save enabled="true">
<path>segmentation_data/semantic_camera</path>
</save>
-->
</camera>
<always_on>1</always_on>
<update_rate>30</update_rate>
Expand Down