1 | initial version |
this will only work,if b_mat contains a single pixel / value.
did you mean copyTo() ?
2 | No.2 Revision |
this setTo() will only work,if work, if b_mat contains a single pixel / value.
did you mean copyTo() ?probably wanted copyTo() , like:
b_mat.copyTo(a_mat); // note the reverse order !
3 | No.3 Revision |
setTo() will only work, if b_mat contains a single pixel / value. value (or a Scalar).
you probably wanted copyTo() , like:
b_mat.copyTo(a_mat); // note the reverse order !
4 | No.4 Revision |
setTo() will only work, if b_mat contains a single pixel / value (or a Scalar).
a_mat and b_mat has the same type and size
in this case, you probably wanted copyTo() , like:
b_mat.copyTo(a_mat); // note the reverse order !