6#include "reusex/vision/common/object.hpp"
27 float score,
int class_id,
28 const std::string &class_name);
40 float bottom,
float score,
int class_id,
41 const std::string &class_name);
53 float score,
int track_id,
54 const std::string &class_name);
58 float score,
int track_id,
59 const std::string &class_name,
64 float score,
int track_id,
65 const std::string &class_name,
70 float score,
int track_id,
71 const std::string &class_name,
87 float score,
int class_id,
88 const std::string &class_name);
101 const std::vector<PosePoint> &pose_points,
102 float score,
int class_id,
103 const std::string &class_name);
116 float bottom,
const cv::Mat &mask,
117 float score,
int class_id,
118 const std::string &class_name);
DetectionBox create_position_box(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 create_track_box(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 create_segmentation_box(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 create_box(float left, float top, float right, float bottom, float score, int class_id, const std::string &class_name)
Create a standard detection box.
DetectionBox create_obb_box(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 create_depth_anything_box(const cv::Mat &depth)
Create a depth detection from DepthAnything output.
@ pose
Human pose estimation result.
@ obb
Oriented bounding box.
DetectionBox create_depth_pro_box(const cv::Mat &depth, float fog_data)
Create a depth detection from DepthPro output.
DetectionBox create_pose_box(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.
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.