c++ - floor of a matrix in OpenCV 2.4.3 -
c++ - floor of a matrix in OpenCV 2.4.3 -
i have matrix of type mat. want calculate floor of mat. have searched operations on arrays , core functionality documentation.
below sample code
mat m = (mat_<double>(3,3) << 1.2, 0.3, 0.9, 2.3, 1.1, 0.7, 10.2, 10,3, 8.0, 11.6);
i looking like
floor(m, m)
or
m = floor(m)
can tell me how this? platform c++
c++ opencv matrix
Comments
Post a Comment