Trait ripple::conv::iter::WindowIterate[][src]

pub trait WindowIterate<N, S> where
    N: Scalar,
    S: Storage<N, Dynamic, Dynamic>, 
{ fn windows(&self, win_sz: (usize, usize)) -> PatchIterator<'_, N, S, U1, U1>
Notable traits for PatchIterator<'a, N, S, W, V>
impl<'a, N, S, W, V> Iterator for PatchIterator<'a, N, S, W, V> where
    N: Scalar,
    S: Storage<N, Dynamic, Dynamic>,
    W: Dim,
    V: Dim
type Item = Matrix<N, Dynamic, Dynamic, SliceStorage<'a, N, Dynamic, Dynamic, S::RStride, S::CStride>>;
; }
Expand description

Returns a WindowIterator over overlapping contiguous regions with step size 1

Required methods

Implementations on Foreign Types

Implementors