pub struct BoundingBox {
pub height: i32,
pub label: String,
pub value: f32,
pub width: i32,
pub x: i32,
pub y: i32,
}
Expand description
Represents a detected object’s location and classification.
Used in object detection models to specify where objects were found in an image and their classification details.
Fields§
§height: i32
Height of the bounding box in pixels
label: String
Classification label for the detected object
value: f32
Confidence score for the detection (0.0 to 1.0)
width: i32
Width of the bounding box in pixels
x: i32
X-coordinate of the top-left corner
y: i32
Y-coordinate of the top-left corner
Trait Implementations§
Source§impl Debug for BoundingBox
impl Debug for BoundingBox
Source§impl<'de> Deserialize<'de> for BoundingBox
impl<'de> Deserialize<'de> for BoundingBox
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BoundingBox
impl RefUnwindSafe for BoundingBox
impl Send for BoundingBox
impl Sync for BoundingBox
impl Unpin for BoundingBox
impl UnwindSafe for BoundingBox
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more