Home | History | Annotate | Download | only in src

Lines Matching defs:S0

75             Mat S0 = stabilizationMotions[j];
77 at(j, updatedMotions) = S1 * at(j, updatedMotions) * S0.inv();
558 Mat_<float> S0 = Mat::eye(3, 3, CV_32F);
559 S0(1,1) = S0(0,0) = sol[c];
560 S0(0,1) = sol[c+1];
561 S0(1,0) = -sol[c+1];
562 S0(0,2) = sol[c+2];
563 S0(1,2) = sol[c+3];
564 S[t] = S0;