HomeSort by relevance Sort by last modified time
    Searched refs:distortion (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/dynamic_depth/includes/dynamic_depth/
imaging_model.h 26 std::vector<float> distortion; // Distortion parameters. member in struct:dynamic_depth::ImagingModelParams
35 distortion(std::vector<float>()),
43 distortion == other.distortion && skew == other.skew &&
  /external/dynamic_depth/internal/dynamic_depth/
imaging_model.cc 25 constexpr char kDistortion[] = "Distortion";
63 std::vector<float> distortion; local
73 kDistortion, &distortion); local
74 if (distortion.size() != distortion_count * 2) {
76 << " but should be " << distortion.size()
84 params.distortion = distortion;
109 if (!params.distortion.empty() && params.distortion.size() % 2 != 0) {
110 LOG(ERROR) << "Distortion must be empty or contain pairs of values, but an
    [all...]
  /external/webp/src/enc/
picture_psnr_enc.c 10 // WebPPicture tools for measuring distortion
30 // local-min distortion
117 // Distortion
135 int type, float* distortion, float* result) {
142 result == NULL || distortion == NULL) {
165 *distortion = (float)metric(src, width, ref, width, width, height);
168 *result = (type == 1) ? (float)GetLogSSIM(*distortion, (double)width * height)
169 : (float)GetPSNR(*distortion, (double)width * height);
198 // We always measure distortion in ARGB space.
202 float distortion; local
    [all...]
  /external/ImageMagick/MagickCore/
compare.c 95 % const MetricType metric,double *distortion,ExceptionInfo *exception)
105 % o distortion: the computed distortion between the images.
131 const MetricType metric,double *distortion,ExceptionInfo *exception)
173 assert(distortion != (double *) NULL);
174 *distortion=0.0;
177 status=GetImageDistortion(image,reconstruct_image,metric,distortion,
343 % reconstructed image and returns the specified distortion metric.
349 % double *distortion,ExceptionInfo *exception)
359 % o distortion: the computed distortion between the images
2140 distortion; local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
range_sampler.h 210 // distribution by applying a distortion power to the weights.
216 float distortion, int32 num_reserved_ids,
220 float distortion, int32 num_reserved_ids,
245 Status LoadFromFile(Env* env, const string& vocab_file, float distortion);
247 void LoadFromUnigrams(const std::vector<float>& unigrams, float distortion);
range_sampler.cc 234 float distortion,
243 TF_CHECK_OK(LoadFromFile(env, vocab_file, distortion));
250 float distortion,
258 LoadFromUnigrams(unigrams, distortion);
282 float distortion) {
301 w = pow(w, distortion);
311 float distortion) {
316 w = pow(w, distortion);
candidate_sampler_ops.cc 166 float distortion; local
167 OP_REQUIRES_OK(context, context->GetAttr("distortion", &distortion));
178 distortion, num_reserved_ids,
181 set_sampler(new FixedUnigramSampler(range_max, unigrams, distortion,
  /external/v8/tools/profviz/
stdio.js 35 var distortion = parseInt(result.distortion); variable
36 if (isNaN(distortion)) processor.printUsageAndExit();
38 distortion_per_entry = distortion / 1000000;
profviz.js 67 distortion,
73 'distortion' : distortion,
100 "distortion",
222 var distortion = getDistortion();
231 worker.run(file, kResX, kResY, distortion, range[0], range[1]);
244 parseInt(ui.distortion.value, 10);
246 input_distortion = ui.distortion.value = 4500;
72 'resy' : resy, property in class:plotWorker.run.args
worker.js 85 var distortion = args["distortion"];
116 distortion,
135 psc.collectData(input, distortion);
  /external/tensorflow/tensorflow/python/ops/
candidate_sampling_ops.py 222 distortion=1.0,
240 applying a distortion power to the weights.
265 distortion: The distortion is used to skew the unigram probability
266 distribution. Each weight is first raised to the distortion's power
268 `distortion = 1.0` gives regular unigram sampling (as defined by the vocab
269 file), and `distortion = 0.0` gives a uniform distribution.
302 vocab_file=vocab_file, distortion=distortion,
  /external/libvpx/libvpx/vp8/encoder/
mcomp.h 45 int *mvcost[2], int *distortion,
rdopt.c 471 static void macro_block_yrd(MACROBLOCK *mb, int *Rate, int *Distortion) {
501 /* Distortion */
505 *Distortion = (d >> 4);
529 int distortion; local
564 distortion = vp8_block_error(be->coeff, b->dqcoeff) >> 2;
566 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
571 *bestdistortion = distortion;
588 int *Distortion, int best_rd) {
592 int distortion = 0; local
628 distortion += d
651 int distortion; local
899 unsigned int distortion = 0; local
1000 int distortion; local
1591 int distortion; local
1940 int distortion; local
1961 int distortion; local
1996 int distortion; local
    [all...]
pickinter.c 127 int *mvcost[2], int *distortion,
136 (void)distortion;
185 int distortion; local
198 distortion = get_prediction_error(be, b);
199 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
203 *bestdistortion = distortion;
219 int distortion = 0; local
243 distortion += d;
250 if (distortion > *best_dist) break;
256 *best_dist = distortion;
1307 int rate_, best_rate = 0, distortion, best_sse; local
    [all...]
mcomp.c 204 /* returns distortion + motion vector cost */
215 *distortion = thismse; \
225 int *mvcost[2], int *distortion,
291 *distortion = besterr;
369 int *mvcost[2], int *distortion,
406 *distortion = bestmse;
419 *distortion = thismse;
431 *distortion = thismse;
445 *distortion = thismse;
457 *distortion = thismse
    [all...]
  /external/v8/tools/
plot-timer-events 42 `echo "$arg" | grep -q "^--distortion"`
73 distortion=`echo "1000*(($t_1_end - $t_1_start) - ($t_2_end - $t_2_start)) \
75 options="--distortion=$distortion"
  /frameworks/av/services/camera/libcameraservice/tests/
DistortionMapperTest.cpp 50 float distortion[5], float intrinsics[5],
64 distortion, 5);
302 // Test a realistic distortion function with matching calibration values, enforcing
308 float distortion[] = {0.06875723, -0.13922249, 0.02818312, -0.00032781, -0.00025431}; local
312 setupTestMapper(&m, distortion, intrinsics, activeArray, preCorrectionActiveArray);
317 // Test a realistic distortion function with matching calibration values, enforcing
323 float distortion[] = {0.06875723, -0.13922249, 0.02818312, -0.00032781, -0.00025431}; local
327 setupTestMapper(&m, distortion, intrinsics, activeArray, preCorrectionActiveArray);
332 // Test a very large distortion function; the regions aren't valid for such a big transform,
  /external/ImageMagick/MagickWand/
compare.c 63 % them as a distortion metric and as a new image visually annotating their
141 " maximum distortion for (sub)image match",
171 " minimum distortion for (sub)image match",
267 distortion,
326 distortion=0.0;
265 distortion, local
    [all...]
  /external/libmpeg2/common/arm/
icv_sad_a9.s 42 @* @brief computes distortion (SAD) between 2 8x4 blocks
  /external/aac/libAACenc/src/
quantize.cpp 306 description: calculates distortion of quantized values
307 returns: distortion
354 description: calculates energy and distortion of quantized values
358 output: energy, distortion
370 FIXP_DBL distortion = FL2FXCONST_DBL(0.0f); local
396 distortion += diff;
400 *dist = CalcLdData(distortion);
  /frameworks/av/services/camera/libcameraservice/device3/
DistortionMapper.cpp 31 * Metadata keys to correct when adjusting coordinates for distortion correction
181 camera_metadata_ro_entry_t calib, distortion; local
184 distortion = result.find(ANDROID_LENS_DISTORTION);
187 if (distortion.count != 5) return BAD_VALUE;
197 for (size_t i = 0; i < distortion.count; i++) {
198 if (mK[i] != distortion.data.f[i]) {
215 for (size_t i = 0; i < distortion.count; i++) {
216 mK[i] = distortion.data.f[i];
349 // Apply distortion model to calculate raw image coordinates
  /external/libvpx/libvpx/vpx_dsp/ppc/
variance_vsx.c 19 int distortion; local
32 vec_ste(d, 0, &distortion);
34 return distortion;
  /external/libaom/libaom/av1/encoder/
mcomp.h 110 int *distortion, unsigned int *sse1, const uint8_t *second_pred,
154 int *mvjcost, int *mvcost[2], int *distortion, unsigned int *sse1,
mcomp.c 204 *distortion = thismse; \
227 *distortion = thismse; \
338 int *mvcost[2], unsigned int *sse1, int *distortion) {
365 *distortion = besterr;
398 int *cost_list, int *mvjcost, int *mvcost[2], int *distortion,
406 h, offset, mvjcost, mvcost, sse1, distortion);
471 int *cost_list, int *mvjcost, int *mvcost[2], int *distortion,
485 h, offset, mvjcost, mvcost, sse1, distortion);
540 int *cost_list, int *mvjcost, int *mvcost[2], int *distortion,
554 h, offset, mvjcost, mvcost, sse1, distortion);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 567 // TODO(jingning): tune the model to better capture the distortion.
779 int64_t *distortion, int *skippable, int64_t *sse,
802 *distortion = INT64_MAX;
806 *distortion = args.this_dist;
814 int64_t *distortion, int *skip, int64_t *sse,
824 txfm_rd_in_plane(cpi, x, rate, distortion, skip, sse, ref_best_rd, 0, bs,
829 int64_t *distortion, int *skip,
980 int64_t distortion = 0; local
1082 int64_t distortion = 0; local
2010 uint32_t distortion; local
4153 int64_t distortion; local
    [all...]

Completed in 3356 milliseconds

1 2 3