pub trait NormalizeBBoxLayerTrait: LayerTrait + NormalizeBBoxLayerTraitConst {
    // Required method
    fn as_raw_mut_NormalizeBBoxLayer(&mut self) -> *mut c_void;

    // Provided methods
    fn set_pnorm(&mut self, val: f32) { ... }
    fn set_epsilon(&mut self, val: f32) { ... }
    fn set_across_spatial(&mut self, val: bool) { ... }
}
Expand description

Mutable methods for crate::dnn::NormalizeBBoxLayer

Required Methods§

Provided Methods§

source

fn set_pnorm(&mut self, val: f32)

source

fn set_epsilon(&mut self, val: f32)

source

fn set_across_spatial(&mut self, val: bool)

Implementors§