Home | History | Annotate | Download | only in src

Lines Matching defs:MR

62                     const float *ml, const float *mr, PtrStepSzf mapx, PtrStepSzf mapy);
66 int left, int idx, int right, Size size, const Mat &ml, const Mat &mr,
70 CV_Assert(mr.size() == Size(3, 3) && mr.type() == CV_32F && mr.isContinuous());
77 ml.ptr<float>(), mr.ptr<float>(), mapx, mapy);
116 Mat_<float> MR = S1 * getMotion(idx, k2, *motions2_).inv() * getMotion(idx, k2, *motions_) * S1.inv();
134 xr = MR(0,0)*x + MR(0,1)*y + MR(0,2);
135 yr = MR(1,0)*x + MR(1,1)*y + MR(1,2);
136 zr = MR(2,0)*x + MR(2,1)*y + MR(2,2);
168 Mat MR = S1 * getMotion(idx, k2, *motions2_).inv() * getMotion(idx, k2, *motions_) * S1.inv();
170 cuda::calcWobbleSuppressionMaps(k1, idx, k2, frame.size(), ML, MR, mapx_, mapy_);