HomeSort by relevance Sort by last modified time
    Searched defs:distortion (Results 1 - 10 of 10) sorted by null

  /external/ceres-solver/examples/
snavely_reprojection_error.h 51 // focal length and 2 for radial distortion. The principal point is not modeled
70 // Compute the center of distortion. The sign change comes from
77 // Apply second and fourth order radial distortion.
81 T distortion = T(1.0) + r2 * (l1 + l2 * r2); local
84 T predicted_x = focal * distortion * xp;
85 T predicted_y = focal * distortion * yp;
100 // translation, 1 for focal length and 2 for radial distortion. The
128 // Compute the center of distortion. The sign change comes from
134 // Apply second and fourth order radial distortion.
136 T distortion = T(1.0) + r2 * (l1 + l2 * r2) local
    [all...]
simple_bundle_adjuster.cc 120 // focal length and 2 for radial distortion. The principal point is not modeled
139 // Compute the center of distortion. The sign change comes from
145 // Apply second and fourth order radial distortion.
149 T distortion = T(1.0) + r2 * (l1 + l2 * r2); local
153 T predicted_x = focal * distortion * xp;
154 T predicted_y = focal * distortion * yp;
  /external/aac/libAACenc/src/
quantize.cpp 290 description: calculates distortion of quantized values
291 returns: distortion
343 description: calculates energy and distortion of quantized values
347 output: energy, distortion
362 FIXP_DBL distortion = FL2FXCONST_DBL(0.0f); local
389 distortion += diff;
393 *dist = CalcLdData(distortion);
  /external/ceres-solver/internal/ceres/
system_test.cc 417 // focal length and 2 for radial distortion. The principal point is
440 // Compute the center of distortion. The sign change comes from
446 // Apply second and fourth order radial distortion.
448 T distortion = T(1.0) + r2 * (l1 + l2 * r2); local
450 residuals[0] = distortion * xp - T(u);
451 residuals[1] = distortion * yp - T(v);
  /external/libvpx/libvpx/vp8/encoder/
temporal_filter.c 199 int distortion; local
207 NULL, &distortion, &sse);
encodeframe.c 1207 int distortion; local
    [all...]
pickinter.c 47 int *mvcost[2], int *distortion,
56 (void) distortion;
102 int distortion = 0; local
110 distortion += diff * diff;
117 return distortion;
148 int distortion; local
162 distortion = get_prediction_error(be, b);
163 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
168 *bestdistortion = distortion;
191 int distortion = 0 local
1251 int rate, best_rate = 0, distortion, best_sse; local
    [all...]
rdopt.c 575 int *Distortion)
608 /* Distortion */
612 *Distortion = (d >> 4);
643 int distortion; local
679 distortion = vp8_block_error(be->coeff, b->dqcoeff) >> 2;
681 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
687 *bestdistortion = distortion;
704 int *rate_y, int *Distortion, int best_rd)
709 int distortion = 0; local
748 distortion += d
776 int distortion; local
883 int distortion; local
1046 unsigned int distortion = 0; local
1162 int distortion; local
1292 int distortion; local
1765 int distortion; local
2147 int distortion; local
2171 int distortion; local
2205 int distortion; local
    [all...]
  /external/webp/src/enc/
frame.c 714 uint64_t distortion = 0; local
729 distortion += info.D;
739 *PSNR = (float)(10.* log10(255. * 255. * pixel_count / distortion));
  /external/opencv/cvaux/include/
cvaux.h 513 float distortion[4]; /* distortion coefficients - two coefficients for radial distortion member in struct:CvCamera
894 float distortion[4]; member in struct:__anon12376
    [all...]

Completed in 273 milliseconds