Skip to content
This repository was archived by the owner on Jul 26, 2024. It is now read-only.

Commit d28abdc

Browse files
committed
new meshes and URDF description
1 parent c0742b9 commit d28abdc

12 files changed

+752
-82
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,6 @@ modules.order
5656
Module.symvers
5757
Mkfile.old
5858
dkms.conf
59+
60+
#Blender Autosave
61+
*.blend?

launch/driver.launch

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Licensed under the MIT License.
1616

1717
<group unless="$(arg overwrite_robot_description)">
1818
<param name="azure_description"
19-
command="xacro $(find azure_kinect_ros_driver)/urdf/azure_kinect.urdf.xacro tf_prefix:=$(arg tf_prefix)" />
19+
command="xacro $(find azure_kinect_ros_driver)/urdf/azure_kinect_standalone.urdf.xacro tf_prefix:=$(arg tf_prefix)" />
2020
<node name="joint_state_publisher_azure" pkg="joint_state_publisher" type="joint_state_publisher">
2121
<remap from="robot_description" to="azure_description" />
2222
</node>
@@ -34,17 +34,17 @@ Licensed under the MIT License.
3434
<arg name="fps" default="5" /> <!-- FPS to run both cameras at. Valid options are 5, 15, and 30 -->
3535
<arg name="point_cloud" default="true" /> <!-- Generate a point cloud from depth data. Requires depth_enabled -->
3636
<arg name="rgb_point_cloud" default="true" /> <!-- Colorize the point cloud using the RBG camera. Requires color_enabled and depth_enabled -->
37-
<arg name="point_cloud_in_depth_frame" default="false" /> <!-- Whether the RGB pointcloud is rendered in the depth frame (true) or RGB frame (false). Will either match the resolution of the depth camera (true) or the RGB camera (false). -->
37+
<arg name="point_cloud_in_depth_frame" default="false" /> <!-- Whether the RGB pointcloud is rendered in the depth frame (true) or RGB frame (false). Will either match the resolution of the depth camera (true) or the RGB camera (false). -->
3838
<arg name="required" default="false" /> <!-- Argument which specified if the entire launch file should terminate if the node dies -->
3939
<arg name="sensor_sn" default="" /> <!-- Sensor serial number. If none provided, the first sensor will be selected -->
4040
<arg name="recording_file" default="" /> <!-- Absolute path to a mkv recording file which will be used with the playback api instead of opening a device -->
4141
<arg name="recording_loop_enabled" default="false" /> <!-- If set to true the recording file will rewind the beginning once end of file is reached -->
42-
<arg name="body_tracking_enabled" default="false" /> <!-- If set to true the joint positions will be published as marker arrays -->
42+
<arg name="body_tracking_enabled" default="false" /> <!-- If set to true the joint positions will be published as marker arrays -->
4343
<arg name="body_tracking_smoothing_factor" default="0.0" /> <!-- Set between 0 for no smoothing and 1 for full smoothing -->
44-
<arg name="rescale_ir_to_mono8" default="false" /> <!-- Whether to rescale the IR image to an 8-bit monochrome image for visualization and further processing. A scaling factor (ir_mono8_scaling_factor) is applied. -->
45-
<arg name="ir_mono8_scaling_factor" default="1.0" /> <!-- Scaling factor to apply when converting IR to mono8 (see rescale_ir_to_mono8). If using illumination, use the value 0.5-1. If using passive IR, use 10. -->
46-
<arg name="imu_rate_target" default="0"/> <!-- Desired output rate of IMU messages. Set to 0 (default) for full rate (1.6 kHz). -->
47-
<arg name="wired_sync_mode" default="0"/> <!-- Wired sync mode. 0: OFF, 1: MASTER, 2: SUBORDINATE. -->
44+
<arg name="rescale_ir_to_mono8" default="false" /> <!-- Whether to rescale the IR image to an 8-bit monochrome image for visualization and further processing. A scaling factor (ir_mono8_scaling_factor) is applied. -->
45+
<arg name="ir_mono8_scaling_factor" default="1.0" /> <!-- Scaling factor to apply when converting IR to mono8 (see rescale_ir_to_mono8). If using illumination, use the value 0.5-1. If using passive IR, use 10. -->
46+
<arg name="imu_rate_target" default="0"/> <!-- Desired output rate of IMU messages. Set to 0 (default) for full rate (1.6 kHz). -->
47+
<arg name="wired_sync_mode" default="0"/> <!-- Wired sync mode. 0: OFF, 1: MASTER, 2: SUBORDINATE. -->
4848
<arg name="subordinate_delay_off_master_usec" default="0"/> <!-- Delay subordinate camera off master camera by specified amount in usec. -->
4949

5050
<node pkg="azure_kinect_ros_driver" type="node" name="azure_kinect_ros_driver" output="screen" required="$(arg required)">
@@ -57,17 +57,17 @@ Licensed under the MIT License.
5757
<param name="fps" type="int" value="$(arg fps)" />
5858
<param name="point_cloud" type="bool" value="$(arg point_cloud)" />
5959
<param name="rgb_point_cloud" type="bool" value="$(arg rgb_point_cloud)" />
60-
<param name="point_cloud_in_depth_frame" type="bool" value="$(arg point_cloud_in_depth_frame)" />
60+
<param name="point_cloud_in_depth_frame" type="bool" value="$(arg point_cloud_in_depth_frame)" />
6161
<param name="sensor_sn" type="string" value="$(arg sensor_sn)" />
6262
<param name="tf_prefix" type="string" value="$(arg tf_prefix)" />
63-
<param name="recording_file" type="string" value="$(arg recording_file)" />
64-
<param name="recording_loop_enabled" type="bool" value="$(arg recording_loop_enabled)" />
65-
<param name="body_tracking_enabled" type="bool" value="$(arg body_tracking_enabled)" />
66-
<param name="body_tracking_smoothing_factor" type="double" value="$(arg body_tracking_smoothing_factor)" />
63+
<param name="recording_file" type="string" value="$(arg recording_file)" />
64+
<param name="recording_loop_enabled" type="bool" value="$(arg recording_loop_enabled)" />
65+
<param name="body_tracking_enabled" type="bool" value="$(arg body_tracking_enabled)" />
66+
<param name="body_tracking_smoothing_factor" type="double" value="$(arg body_tracking_smoothing_factor)" />
6767
<param name="rescale_ir_to_mono8" type="bool" value="$(arg rescale_ir_to_mono8)" />
6868
<param name="ir_mono8_scaling_factor" type="double" value="$(arg ir_mono8_scaling_factor)" />
69-
<param name="imu_rate_target" type="int" value="$(arg imu_rate_target)"/>
70-
<param name="wired_sync_mode" type="int" value="$(arg wired_sync_mode)"/>
69+
<param name="imu_rate_target" type="int" value="$(arg imu_rate_target)"/>
70+
<param name="wired_sync_mode" type="int" value="$(arg wired_sync_mode)"/>
7171
<param name="subordinate_delay_off_master_usec" type="int" value="$(arg subordinate_delay_off_master_usec)"/>
7272
</node>
7373
</launch>

launch/kinect_rgbd.launch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33

44
<arg name="camera" default="k4a" />
55

6-
<!-- publish Azure Kinect coordiante frames -->
7-
<arg name="tf_prefix" default="" /> <!-- Prefix added to tf frame IDs. It typically contains a trailing '_' unless empty. -->
8-
<arg name="overwrite_robot_description" default="true" /> <!-- Flag to publish a standalone azure_description instead of the default robot_descrition parameter-->
6+
<!-- publish Azure Kinect coordinate frames -->
7+
<arg name="tf_prefix" default="" /> <!-- Prefix added to tf frame IDs. It typically contains a trailing '_' unless empty. -->
8+
<arg name="overwrite_robot_description" default="true" /> <!-- Flag to publish a standalone azure_description instead of the default robot_description parameter-->
99

1010
<group if="$(arg overwrite_robot_description)">
1111
<param name="robot_description"
12-
command="xacro $(find azure_kinect_ros_driver)/urdf/azure_kinect.urdf.xacro tf_prefix:=$(arg tf_prefix)" />
12+
command="xacro $(find azure_kinect_ros_driver)/urdf/azure_kinect_standalone.urdf.xacro tf_prefix:=$(arg tf_prefix)" />
1313
<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher" />
1414
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" />
1515
</group>

launch/slam_rtabmap.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Licensed under the MIT License.
66
<launch>
77

88
<param name="robot_description"
9-
command="xacro $(find azure_kinect_ros_driver)/urdf/azure_kinect.urdf.xacro" />
9+
command="xacro $(find azure_kinect_ros_driver)/urdf/azure_kinect_standalone.urdf.xacro" />
1010

1111
<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher" />
1212
<node name="robot_state_publisher" pkg="robot_state_publisher" type="state_publisher" />

0 commit comments

Comments
 (0)