[][src]Struct darknet_sys::load_args

#[repr(C)]pub struct load_args {
    pub threads: c_int,
    pub paths: *mut *mut c_char,
    pub path: *mut c_char,
    pub n: c_int,
    pub m: c_int,
    pub labels: *mut *mut c_char,
    pub h: c_int,
    pub w: c_int,
    pub out_w: c_int,
    pub out_h: c_int,
    pub nh: c_int,
    pub nw: c_int,
    pub num_boxes: c_int,
    pub min: c_int,
    pub max: c_int,
    pub size: c_int,
    pub classes: c_int,
    pub background: c_int,
    pub scale: c_int,
    pub center: c_int,
    pub coords: c_int,
    pub jitter: f32,
    pub angle: f32,
    pub aspect: f32,
    pub saturation: f32,
    pub exposure: f32,
    pub hue: f32,
    pub d: *mut data,
    pub im: *mut image,
    pub resized: *mut image,
    pub type_: data_type,
    pub hierarchy: *mut tree,
}

Fields

threads: c_intpaths: *mut *mut c_charpath: *mut c_charn: c_intm: c_intlabels: *mut *mut c_charh: c_intw: c_intout_w: c_intout_h: c_intnh: c_intnw: c_intnum_boxes: c_intmin: c_intmax: c_intsize: c_intclasses: c_intbackground: c_intscale: c_intcenter: c_intcoords: c_intjitter: f32angle: f32aspect: f32saturation: f32exposure: f32hue: f32d: *mut dataim: *mut imageresized: *mut imagetype_: data_typehierarchy: *mut tree

Trait Implementations

impl Clone for load_args[src]

impl Copy for load_args[src]

impl Debug for load_args[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.