pub trait Conv2DExt<T: NumAssign + Copy, S: Data> {
    // Required method
    fn conv_2d(
        &self,
        kernel: &ArrayBase<S, Ix2>,
        conv_type: PaddingSize<N>,
        padding_mode: PaddingMode<N, T>
    ) -> Option<Array2<T>>;
}

Required Methods§

source

fn conv_2d( &self, kernel: &ArrayBase<S, Ix2>, conv_type: PaddingSize<N>, padding_mode: PaddingMode<N, T> ) -> Option<Array2<T>>

Implementations on Foreign Types§

source§

impl<T, S> Conv2DExt<T, S> for ArrayBase<S, Ix2>where S: Data<Elem = T>, T: Copy + NumAssign + Debug,

source§

fn conv_2d( &self, kernel: &ArrayBase<S, Ix2>, conv_type: PaddingSize<N>, padding_mode: PaddingMode<N, T> ) -> Option<Array2<T>>

Implementors§