pub trait UMatTrait: UMatTraitConst {
Show 24 methods
// Required method
fn as_raw_mut_UMat(&mut self) -> *mut c_void;
// Provided methods
fn set_flags(&mut self, val: i32) { ... }
fn set_dims(&mut self, val: i32) { ... }
fn set_rows(&mut self, val: i32) { ... }
fn set_cols(&mut self, val: i32) { ... }
fn set_usage_flags(&mut self, val: UMatUsageFlags) { ... }
fn u(&mut self) -> UMatData { ... }
fn set_u(&mut self, val: &mut UMatData) { ... }
fn set_offset(&mut self, val: size_t) { ... }
fn set_to(
&mut self,
value: &impl ToInputArray,
mask: &impl ToInputArray
) -> Result<UMat> { ... }
fn set_to_def(&mut self, value: &impl ToInputArray) -> Result<UMat> { ... }
unsafe fn create_rows_cols(
&mut self,
rows: i32,
cols: i32,
typ: i32,
usage_flags: UMatUsageFlags
) -> Result<()> { ... }
fn create_rows_cols_def(
&mut self,
rows: i32,
cols: i32,
typ: i32
) -> Result<()> { ... }
unsafe fn create_size(
&mut self,
size: Size,
typ: i32,
usage_flags: UMatUsageFlags
) -> Result<()> { ... }
fn create_size_def(&mut self, size: Size, typ: i32) -> Result<()> { ... }
unsafe fn create_nd(
&mut self,
sizes: &[i32],
typ: i32,
usage_flags: UMatUsageFlags
) -> Result<()> { ... }
fn create_nd_def(&mut self, sizes: &[i32], typ: i32) -> Result<()> { ... }
unsafe fn create_nd_vec(
&mut self,
sizes: &Vector<i32>,
typ: i32,
usage_flags: UMatUsageFlags
) -> Result<()> { ... }
fn create_nd_vec_def(&mut self, sizes: &Vector<i32>, typ: i32) -> Result<()> { ... }
fn addref(&mut self) -> Result<()> { ... }
fn release(&mut self) -> Result<()> { ... }
fn deallocate(&mut self) -> Result<()> { ... }
fn adjust_roi(
&mut self,
dtop: i32,
dbottom: i32,
dleft: i32,
dright: i32
) -> Result<UMat> { ... }
fn update_continuity_flag(&mut self) -> Result<()> { ... }
}
Expand description
Mutable methods for core::UMat
Required Methods§
fn as_raw_mut_UMat(&mut self) -> *mut c_void
Provided Methods§
sourcefn set_flags(&mut self, val: i32)
fn set_flags(&mut self, val: i32)
! includes several bit-fields:
- the magic signature
- continuity flag
- depth
- number of channels
sourcefn set_rows(&mut self, val: i32)
fn set_rows(&mut self, val: i32)
number of rows in the matrix; -1 when the matrix has more than 2 dimensions
sourcefn set_cols(&mut self, val: i32)
fn set_cols(&mut self, val: i32)
number of columns in the matrix; -1 when the matrix has more than 2 dimensions
sourcefn set_usage_flags(&mut self, val: UMatUsageFlags)
fn set_usage_flags(&mut self, val: UMatUsageFlags)
usage flags for allocator; recommend do not set directly, instead set during construct/create/getUMat
sourcefn set_offset(&mut self, val: size_t)
fn set_offset(&mut self, val: size_t)
offset of the submatrix (or 0)
sourcefn set_to(
&mut self,
value: &impl ToInputArray,
mask: &impl ToInputArray
) -> Result<UMat>
fn set_to( &mut self, value: &impl ToInputArray, mask: &impl ToInputArray ) -> Result<UMat>
sourcefn set_to_def(&mut self, value: &impl ToInputArray) -> Result<UMat>
fn set_to_def(&mut self, value: &impl ToInputArray) -> Result<UMat>
sets some of the matrix elements to s, according to the mask
Note
This alternative version of [set_to] function uses the following default values for its arguments:
- mask: noArray()
sourceunsafe fn create_rows_cols(
&mut self,
rows: i32,
cols: i32,
typ: i32,
usage_flags: UMatUsageFlags
) -> Result<()>
unsafe fn create_rows_cols( &mut self, rows: i32, cols: i32, typ: i32, usage_flags: UMatUsageFlags ) -> Result<()>
allocates new matrix data unless the matrix already has specified size and type.
C++ default parameters
- usage_flags: USAGE_DEFAULT
sourcefn create_rows_cols_def(&mut self, rows: i32, cols: i32, typ: i32) -> Result<()>
fn create_rows_cols_def(&mut self, rows: i32, cols: i32, typ: i32) -> Result<()>
allocates new matrix data unless the matrix already has specified size and type.
Note
This alternative version of [create_rows_cols] function uses the following default values for its arguments:
- usage_flags: USAGE_DEFAULT
sourceunsafe fn create_size(
&mut self,
size: Size,
typ: i32,
usage_flags: UMatUsageFlags
) -> Result<()>
unsafe fn create_size( &mut self, size: Size, typ: i32, usage_flags: UMatUsageFlags ) -> Result<()>
C++ default parameters
- usage_flags: USAGE_DEFAULT
sourcefn create_size_def(&mut self, size: Size, typ: i32) -> Result<()>
fn create_size_def(&mut self, size: Size, typ: i32) -> Result<()>
Note
This alternative version of [create_size] function uses the following default values for its arguments:
- usage_flags: USAGE_DEFAULT
sourceunsafe fn create_nd(
&mut self,
sizes: &[i32],
typ: i32,
usage_flags: UMatUsageFlags
) -> Result<()>
unsafe fn create_nd( &mut self, sizes: &[i32], typ: i32, usage_flags: UMatUsageFlags ) -> Result<()>
C++ default parameters
- usage_flags: USAGE_DEFAULT
sourcefn create_nd_def(&mut self, sizes: &[i32], typ: i32) -> Result<()>
fn create_nd_def(&mut self, sizes: &[i32], typ: i32) -> Result<()>
Note
This alternative version of [create_nd] function uses the following default values for its arguments:
- usage_flags: USAGE_DEFAULT
sourceunsafe fn create_nd_vec(
&mut self,
sizes: &Vector<i32>,
typ: i32,
usage_flags: UMatUsageFlags
) -> Result<()>
unsafe fn create_nd_vec( &mut self, sizes: &Vector<i32>, typ: i32, usage_flags: UMatUsageFlags ) -> Result<()>
C++ default parameters
- usage_flags: USAGE_DEFAULT
sourcefn create_nd_vec_def(&mut self, sizes: &Vector<i32>, typ: i32) -> Result<()>
fn create_nd_vec_def(&mut self, sizes: &Vector<i32>, typ: i32) -> Result<()>
Note
This alternative version of [create_nd_vec] function uses the following default values for its arguments:
- usage_flags: USAGE_DEFAULT
sourcefn addref(&mut self) -> Result<()>
fn addref(&mut self) -> Result<()>
increases the reference counter; use with care to avoid memleaks
sourcefn deallocate(&mut self) -> Result<()>
fn deallocate(&mut self) -> Result<()>
deallocates the matrix data
sourcefn adjust_roi(
&mut self,
dtop: i32,
dbottom: i32,
dleft: i32,
dright: i32
) -> Result<UMat>
fn adjust_roi( &mut self, dtop: i32, dbottom: i32, dleft: i32, dright: i32 ) -> Result<UMat>
moves/resizes the current matrix ROI inside the parent matrix.
sourcefn update_continuity_flag(&mut self) -> Result<()>
fn update_continuity_flag(&mut self) -> Result<()>
internal use method: updates the continuity flag