The function set_submatrix(...) from the matrix class needs many redundant parameters :
void set_submatrix (int r1, int r2, int c1, int c2, const Mat< Num_T > &m)
Could the following function be added ?
void set_submatrix (int r, int c, const Mat< Num_T > &m)
where r,c defines the top-left corner of the submatrix, and the size of the submatrix is defined by the size of the matrix given in argument.
thomas
Added into CVS for release in 3.7.3.
/Tony
Log in to post a comment.
The function set_submatrix(...) from the matrix class needs many redundant parameters :
void set_submatrix (int r1, int r2, int c1, int c2, const Mat< Num_T > &m)
Could the following function be added ?
void set_submatrix (int r, int c, const Mat< Num_T > &m)
where r,c defines the top-left corner of the submatrix, and the size of the submatrix is defined by the size of the matrix given in argument.
thomas
Added into CVS for release in 3.7.3.
/Tony