DetectedObject.msg 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. std_msgs/Header header
  2. uint32 id
  3. string label
  4. uint8 type # 0--car, 1--truck, 2--pedestrian, 3--cyclist, 4--unknown
  5. float32 score
  6. std_msgs/ColorRGBA color # Define this object specific color
  7. bool valid # Defines if this object is valid, or invalid as defined by the filtering
  8. geometry_msgs/Pose pose
  9. geometry_msgs/Pose tracked_pose
  10. geometry_msgs/Pose output_pose
  11. float32 yaw
  12. geometry_msgs/Vector3 dimensions
  13. geometry_msgs/Twist velocity
  14. geometry_msgs/Twist acceleration
  15. float32 angle # Angle [0 to 2*PI), allow rotated rects
  16. ############### Behavior State of the Detected Object
  17. uint8 behavior_state # FORWARD_STATE = 0, STOPPING_STATE = 1, BRANCH_LEFT_STATE = 2, BRANCH_RIGHT_STATE = 3, YIELDING_STATE = 4, ACCELERATING_STATE = 5, SLOWDOWN_STATE = 6
  18. uint32 age
  19. uint8 velocitystatus # speed confidence 0--low, 1--normal, 2--high
  20. float32 confidence # confidence of obstacle
  21. sensor_msgs/PointCloud2 pointcloud
  22. perception_msgs/ObstacleCell[] cells
  23. geometry_msgs/PolygonStamped convex_hull
  24. bool pose_reliable
  25. bool velocity_reliable
  26. bool acceleration_reliable