Thursday, June 5, 2014

row and col operations in opencv

check out this link before these operations :)

http://docs.opencv.org/modules/core/doc/basic_structures.html#Mat%20Mat%3a%3arow%28int%20y%29%20const


mat.row(1) = mat.row(3) // this does not work!

mat.row(3).copyTo( mat.row(1)) // this works

No comments:

Post a Comment