result
message BoundingBox
Bounding box associated with an object detection.
Defines the upper left and lower right corners of a detected object in an image frame. Origin (0,0) is the top left corner of the input image. (image_height, image_width) is the bottom right corner. Also the class and confidence threshold associated with the box.
Fields
field y_min (double)
field x_min (double)
field y_max (double)
field x_max (double)
message HSV
HSV values generated by a color filter.
Color filter represented by hue, saturation, and value Uses OpenCV ranges defined here.
Fields
field h (uint32)
field s (uint32)
field v (uint32)
message Detection
Object detection generated by a model.
Fields
field detection_id (uint64)
field class_name (string)
field score (double)
field bbox (BoundingBox)
message DetectionResult
List of object detections.
Fields
field detections (Detection)
field frame_id (uint64)
message AvoidanceResult
Avoidance result generated by an avoidance model.
Fields
field actuation_vector (double)
message SLAMResult
SLAM result generated by a SLAM model.
Fields
field relative_position (Position)
field global_position (Location)
message ComputeResult
Compute result generated by a compute server.
Fields
field timestamp (/google/protobuf/Timestamp)
field engine_name (string)
field detection_result (DetectionResult)
field avoidance_result (AvoidanceResult)
field slam_result (SLAMResult)
field generic_result (string)
message FrameResult
Compute results generated by datasink modules
Fields
field type (string)
field frame_id (uint64)
field result (ComputeResult)