Added Orbbec Astra depth camera

This commit is contained in:
Adam Allevato 2017-05-01 13:22:49 -07:00
parent a2b51a1478
commit d366763c65
4 changed files with 194 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,17 @@
<?xml version="1.0"?>
<model>
<version>1.0</version>
<name>Orbbec Astra Depth Camera</name>
<sdf version="1.6">model.sdf</sdf>
<author>
<name>Adam Allevato</name>
<email>adam.d.allevato@gmail.com</email>
</author>
<description>
The Orbbec Astra medium-range depth camera, with a range of approximately
0.6-8m. https://orbbec3d.com/product-astra/
</description>
</model>

View File

@ -0,0 +1,40 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="orbbec_astra_camera">
<pose></pose>
<link name="link">
<inertial>
<mass>0.5</mass>
</inertial>
<collision name="collision">
<geometry>
<box>
<size>0.17 0.06 0.048</size>
</box>
</geometry>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://orbbec_astra_camera/meshes/orbbec_astra_camera.dae</uri>
</mesh>
</geometry>
</visual>
<sensor name="camera" type="depth">
<update_rate>30</update_rate>
<camera>
<horizontal_fov>1.0472</horizontal_fov>
<image>
<width>640</width>
<height>480</height>
<format>R8G8B8</format>
</image>
<clip>
<near></near>
<far></far>
</clip>
</camera>
</sensor>
</link>
</model>
</sdf>