[−][src]Trait ndarray_vision::processing::kernels::FixedDimensionKernelBuilder
Create a kernel with a fixed dimension
Associated Types
type Params
Parameters used in construction of the kernel
Required methods
Loading content...Provided methods
fn build_with_params(_p: Self::Params) -> Result<Array3<T>, Error>
Build a fixed size kernel with the given parameters
Implementors
impl<T> FixedDimensionKernelBuilder<T> for LaplaceFilter where
T: Copy + Clone + Num + NumOps + Signed + FromPrimitive,
[src]
T: Copy + Clone + Num + NumOps + Signed + FromPrimitive,
type Params = LaplaceType
Type of Laplacian filter to construct
fn build() -> Result<Array3<T>, Error>
[src]
fn build_with_params(p: Self::Params) -> Result<Array3<T>, Error>
[src]
impl<T> FixedDimensionKernelBuilder<T> for SobelFilter where
T: Copy + Clone + Num + Neg<Output = T> + FromPrimitive,
[src]
T: Copy + Clone + Num + Neg<Output = T> + FromPrimitive,