HomeSort by relevance Sort by last modified time
    Searched full:x_new (Results 1 - 6 of 6) sorted by null

  /external/opencv3/modules/photo/src/
denoise_tvl1.cpp 144 double x_new = x_curr[x] + tau*(p_curr[x].y - p_prev[x].y)-tau*s; local
146 x_curr[x] = x_new + theta*(x_new - x_curr[x]);
156 x_new = x_curr[x] + tau*(p_curr[x].x - p_curr[x-1].x + p_curr[x].y - p_prev[x].y)-tau*s;
158 x_curr[x] = x_new + theta*(x_new - x_curr[x]);
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 159 VectorType x_new = y(k - 1) * VectorType::Unit(m, k - 1); local
161 // apply Householder reflection H_{k} to x_new
162 x_new.tail(m - k + 1).applyHouseholderOnTheLeft(H.col(k - 1).tail(m - k), tau.coeffRef(k - 1), workspace.data());
165 x_new += y(i) * VectorType::Unit(m, i);
166 // apply Householder reflection H_{i} to x_new
167 x_new.tail(m - i).applyHouseholderOnTheLeft(H.col(i).tail(m - i - 1), tau.coeffRef(i), workspace.data());
170 x += x_new;
  /external/libvorbis/doc/
07-floor1.tex 30 \item the induction step chooses a point x_new within an existing
32 from the existing line's y value at x_new (as plotted by the line) and
36 x_0,y_0 to x_new,y_new and from x_new,y_new to x_1,y_1. This step is
38 amplitude value at x_new so that later refinement is additionally
39 bounded at x_new.
  /external/opencv3/modules/calib3d/test/
test_fisheye.cpp 313 cv::Mat X_new = R * _objectPoints + T * cv::Mat::ones(1, Np, CV_64FC1);
314 cv::Mat H = cv::internal::ComputeHomography(imagePointsNormalized, X_new.rowRange(0, 2));
316 cv::Mat M = cv::Mat::ones(3, X_new.cols, CV_64FC1);
317 X_new.rowRange(0, 2).copyTo(M.rowRange(0, 2));
  /external/llvm/lib/Support/
APInt.cpp     [all...]
  /external/opencv3/modules/calib3d/src/
fisheye.cpp     [all...]

Completed in 541 milliseconds