5 #include <libfreenect2/frame_listener_impl.h> 6 #include <opencv2/core.hpp> 23 std::vector<cv::Point>
cups;
29 std::shared_ptr<cv::Mat>
frame =
30 std::make_shared<cv::Mat>(424, 512, CV_32FC1, cv::Scalar(0));
103 virtual std::shared_ptr<cv::Mat> get_detected_cups_image() = 0;
111 virtual std::shared_ptr<cv::Mat> get_latest_depth_frame() = 0;
119 virtual std::shared_ptr<cv::Mat> get_latest_ir_frame() = 0;
127 virtual std::shared_ptr<cv::Mat> get_latest_color_frame() = 0;
std::shared_ptr< cv::Mat > frame
Depth frame Depth frame in wich the cups were detected.
Definition: ICupDetector.hpp:29
Can detect cups using the Kinect color and depth camera. This class allows its user to detect cups in...
Definition: ICupDetector.hpp:39
Collection of detected cups Collection of detected cups where the location of the cups is described i...
Definition: ICupDetector.hpp:17
std::vector< cv::Point > cups
List of detected cups with their corresponding X and Y image.
Definition: ICupDetector.hpp:23