Struct AVDetectionBBoxHeader
#[repr(C)]pub struct AVDetectionBBoxHeader {
pub source: [i8; 256],
pub nb_bboxes: u32,
pub bboxes_offset: usize,
pub bbox_size: usize,
}
Fields§
§source: [i8; 256]
Information about how the bounding box is generated. for example, the DNN model name.
nb_bboxes: u32
Number of bounding boxes in the array.
bboxes_offset: usize
Offset in bytes from the beginning of this structure at which the array of bounding boxes starts.
bbox_size: usize
Size of each bounding box in bytes.
Trait Implementations§
§impl Clone for AVDetectionBBoxHeader
impl Clone for AVDetectionBBoxHeader
§fn clone(&self) -> AVDetectionBBoxHeader
fn clone(&self) -> AVDetectionBBoxHeader
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for AVDetectionBBoxHeader
impl Debug for AVDetectionBBoxHeader
impl Copy for AVDetectionBBoxHeader
Auto Trait Implementations§
impl Freeze for AVDetectionBBoxHeader
impl RefUnwindSafe for AVDetectionBBoxHeader
impl Send for AVDetectionBBoxHeader
impl Sync for AVDetectionBBoxHeader
impl Unpin for AVDetectionBBoxHeader
impl UnwindSafe for AVDetectionBBoxHeader
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