Searched defs:map_matrix (Results 1 - 1 of 1) sorted by relevance

/external/opencv3/modules/video/src/
H A Decc.cpp250 static void update_warping_matrix_ECC (Mat& map_matrix, const Mat& update, const int motionType) argument
252 CV_Assert (map_matrix.type() == CV_32FC1);
259 CV_Assert (map_matrix.rows == 3 && update.rows == 8);
261 CV_Assert(map_matrix.rows == 2 && update.rows == 6);
263 CV_Assert (map_matrix.rows == 2 && update.rows == 3);
265 CV_Assert (map_matrix.rows == 2 && update.rows == 2);
269 CV_Assert( map_matrix.isContinuous());
273 float* mapPtr = map_matrix.ptr<float>(0);
459 // iteratively update map_matrix

Completed in 83 milliseconds