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.cpp File Reference
#include "motion_capture.hpp"
Include dependency graph for motion_capture.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 190 of file motion_capture.cpp.

191{
192 rclcpp::init(argc, argv);
193 rclcpp::spin(std::make_shared<pointcloud_motion_capture::MotionCapture>());
194 rclcpp::shutdown();
195 return 0;
196}