Function opencv::core::create_continuous  
source · pub fn create_continuous(
    rows: i32,
    cols: i32,
    typ: i32,
    arr: &mut impl ToOutputArray
) -> Result<()>Expand description
Creates a continuous matrix.
§Parameters
- rows: Row count.
- cols: Column count.
- type: Type of the matrix.
- arr: Destination matrix. This parameter changes only if it has a proper type and area (
). 
Matrix is called continuous if its elements are stored continuously, that is, without gaps at the end of each row.