2#include "reusex/vision/common/object.hpp"
23 float score,
int class_id,
24 const std::string &class_name);
36 float score,
int class_id,
37 const std::string &class_name);
49 float score,
int track_id,
50 const std::string &class_name);
54 float score,
int track_id,
55 const std::string &class_name,
60 float score,
int track_id,
61 const std::string &class_name,
66 float score,
int track_id,
67 const std::string &class_name,
83 float score,
int class_id,
84 const std::string &class_name);
97 const std::vector<PosePoint> &pose_points,
98 float score,
int class_id,
99 const std::string &class_name);
112 float bottom,
const cv::Mat &mask,
113 float score,
int class_id,
114 const std::string &class_name);
DetectionBox createBox(float left, float top, float right, float bottom, float score, int class_id, const std::string &class_name)
Create a standard detection box.
DetectionBox createPositionBox(float left, float top, float right, float bottom, float score, int class_id, const std::string &class_name)
Create a position/region-of-interest box (type POSITION).
DetectionBox createPoseBox(float left, float top, float right, float bottom, const std::vector< PosePoint > &pose_points, float score, int class_id, const std::string &class_name)
Create a pose-estimation detection box.
DetectionBox createSegmentationBox(float left, float top, float right, float bottom, const cv::Mat &mask, float score, int class_id, const std::string &class_name)
Create a segmentation detection box with an associated mask.
DetectionBox createDepthAnythingBox(const cv::Mat &depth)
Create a depth detection from DepthAnything output.
DetectionBox createObbBox(float cx, float cy, float w, float h, float angle, float score, int class_id, const std::string &class_name)
Create an oriented bounding box detection.
DetectionBox createTrackBox(float left, float top, float right, float bottom, float score, int track_id, const std::string &class_name)
Create a simple tracking box without additional payload.
DetectionBox createDepthProBox(const cv::Mat &depth, float fog_data)
Create a depth detection from DepthPro output.
Universal detection result container that holds a bounding box plus optional enriched data (pose,...
Oriented bounding box (OBB) parameterized by center, size, and rotation angle.
A set of keypoints representing a human or object pose.
Instance segmentation result backed by an OpenCV mask.