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
point_cloud_reader.cpp File Reference
Include dependency graph for point_cloud_reader.cpp:

Go to the source code of this file.

Namespaces

namespace  pointcloud_motion_capture
 

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int argc,
char ** argv )

Definition at line 72 of file point_cloud_reader.cpp.

73{
74 rclcpp::init(argc, argv);
75 rclcpp::spin(std::make_shared<pointcloud_motion_capture::PointCloudProcessor>());
76 rclcpp::shutdown();
77 return 0;
78}