pub trait MatTraitManual: MatTraitConstManual + MatTrait {
    // Provided methods
    unsafe fn at_unchecked_mut<T: DataType>(
        &mut self,
        i0: i32
    ) -> Result<&mut T> { ... }
    unsafe fn at_2d_unchecked_mut<T: DataType>(
        &mut self,
        row: i32,
        col: i32
    ) -> Result<&mut T> { ... }
    unsafe fn at_pt_unchecked_mut<T: DataType>(
        &mut self,
        pt: Point
    ) -> Result<&mut T> { ... }
    unsafe fn at_3d_unchecked_mut<T: DataType>(
        &mut self,
        i0: i32,
        i1: i32,
        i2: i32
    ) -> Result<&mut T> { ... }
    unsafe fn at_nd_unchecked_mut<T: DataType>(
        &mut self,
        idx: &[i32]
    ) -> Result<&mut T> { ... }
    fn at_row_mut<T: DataType>(&mut self, row: i32) -> Result<&mut [T]> { ... }
    unsafe fn at_row_unchecked_mut<T: DataType>(
        &mut self,
        row: i32
    ) -> Result<&mut [T]> { ... }
    fn set(&mut self, s: Scalar) -> Result<()> { ... }
    fn data_bytes_mut(&mut self) -> Result<&mut [u8]> { ... }
    fn data_typed_mut<T: DataType>(&mut self) -> Result<&mut [T]> { ... }
    unsafe fn data_typed_unchecked_mut<T: DataType>(
        &mut self
    ) -> Result<&mut [T]> { ... }
}

Provided Methods§

source

unsafe fn at_unchecked_mut<T: DataType>(&mut self, i0: i32) -> Result<&mut T>

Like Mat::at_mut() but performs no bounds or type checks

Safety

Caller must ensure that index is within Mat bounds

source

unsafe fn at_2d_unchecked_mut<T: DataType>( &mut self, row: i32, col: i32 ) -> Result<&mut T>

Like Mat::at_2d_mut() but performs no bounds or type checks

Safety

Caller must ensure that indices are within Mat bounds

source

unsafe fn at_pt_unchecked_mut<T: DataType>( &mut self, pt: Point ) -> Result<&mut T>

Like Mat::at_pt_mut() but performs no bounds or type checks

Safety

Caller must ensure that point is within Mat bounds

source

unsafe fn at_3d_unchecked_mut<T: DataType>( &mut self, i0: i32, i1: i32, i2: i32 ) -> Result<&mut T>

Like Mat::at_3d_mut() but performs no bounds or type checks

Safety

Caller must ensure that indices are within Mat bounds

source

unsafe fn at_nd_unchecked_mut<T: DataType>( &mut self, idx: &[i32] ) -> Result<&mut T>

Like Mat::at_nd_mut() but performs no bounds or type checks

Safety

Caller must ensure that indices are within Mat bounds

source

fn at_row_mut<T: DataType>(&mut self, row: i32) -> Result<&mut [T]>

Return a complete writeable row

source

unsafe fn at_row_unchecked_mut<T: DataType>( &mut self, row: i32 ) -> Result<&mut [T]>

Like Mat::at_row_mut() but performs no bounds or type checks

Safety

Caller must ensure that index is within Mat bounds

source

fn set(&mut self, s: Scalar) -> Result<()>

Sets all or some of the array elements to the specified value.

Parameters
  • s: Assigned scalar converted to the actual array type.
source

fn data_bytes_mut(&mut self) -> Result<&mut [u8]>

Returns underlying data array as mutable byte slice, Mat must be continuous.

source

fn data_typed_mut<T: DataType>(&mut self) -> Result<&mut [T]>

source

unsafe fn data_typed_unchecked_mut<T: DataType>(&mut self) -> Result<&mut [T]>

Safety

Caller must ensure that the T type argument corresponds to the data stored in the Mat

Implementors§