PointCloud Motion Capture
Pointcloud Motion Capture is a ROS 2 package designed to process point clouds for capturing object movements. It detects objects using color filters and infers data about their position, velocity, and acceleration. This package has been tested under [ROS] Humble and Ubuntu 22.04
Loading...
Searching...
No Matches
motion_capture Namespace Reference

Functions

 generate_launch_description ()
 

Function Documentation

◆ generate_launch_description()

motion_capture.generate_launch_description ( )

Definition at line 8 of file motion_capture.launch.py.

8def generate_launch_description():
9 pkg_share_dir = os.path.join(
10 get_package_share_directory('pointcloud_motion_capture'))
11
12 pc_reader_config = os.path.join(pkg_share_dir, 'config', 'pc_reader.yaml')
13 motion_capture_config = os.path.join(pkg_share_dir, 'config', 'motion_capture.yaml')
14
15 return LaunchDescription([
16 Node(
17 package='pointcloud_motion_capture',
18 executable='point_cloud_reader',
19 output='screen',
20 parameters=[pc_reader_config],
21 ),
22
23 Node(
24 package='pointcloud_motion_capture',
25 executable='motion_capture',
26 output='screen',
27 parameters=[motion_capture_config],
28 ),
29 ])