[][src]Trait opencv::hub_prelude::ConcatLayerTrait

pub trait ConcatLayerTrait: LayerTrait {
    pub fn as_raw_ConcatLayer(&self) -> *const c_void;
pub fn as_raw_mut_ConcatLayer(&mut self) -> *mut c_void; pub fn axis(&self) -> i32 { ... }
pub fn set_axis(&mut self, val: i32) { ... }
pub fn padding(&self) -> bool { ... }
pub fn set_padding(&mut self, val: bool) { ... } }

Required methods

Loading content...

Provided methods

pub fn axis(&self) -> i32[src]

pub fn set_axis(&mut self, val: i32)[src]

pub fn padding(&self) -> bool[src]

Add zero padding in case of concatenation of blobs with different spatial sizes.

Details: https://github.com/torch/nn/blob/master/doc/containers.md#depthconcat

pub fn set_padding(&mut self, val: bool)[src]

Add zero padding in case of concatenation of blobs with different spatial sizes.

Details: https://github.com/torch/nn/blob/master/doc/containers.md#depthconcat

Loading content...

Implementors

impl ConcatLayerTrait for ConcatLayer[src]

impl ConcatLayerTrait for PtrOfConcatLayer[src]

Loading content...