HomeSort by relevance Sort by last modified time
    Searched refs:correspondences (Results 1 - 3 of 3) sorted by null

  /external/libaom/libaom/av1/encoder/
corner_match.c 86 Correspondence *correspondences,
95 if (!is_eligible_point(correspondences[i].rx + x,
96 correspondences[i].ry + y, width, height))
98 if (!is_eligible_distance(correspondences[i].x, correspondences[i].y,
99 correspondences[i].rx + x,
100 correspondences[i].ry + y, width, height))
103 frm, frm_stride, correspondences[i].x, correspondences[i].y, ref,
104 ref_stride, correspondences[i].rx + x, correspondences[i].ry + y)
149 Correspondence *correspondences = (Correspondence *)correspondence_pts; local
    [all...]
global_motion.c 285 int *correspondences; local
306 // find correspondences between the two images
307 correspondences =
308 (int *)malloc(num_frm_corners * 4 * sizeof(*correspondences));
312 frm->y_stride, ref->y_stride, correspondences);
314 ransac(correspondences, num_correspondences, num_inliers_by_motion,
317 free(correspondences);
355 double *correspondences) {
362 correspondences[4 * num_correspondences] = x;
363 correspondences[4 * num_correspondences + 1] = y
792 double *correspondences; local
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/constraintformulas/
ExpressionCompatibleWithType.java 314 Map<ResolvedTypeVariable, InferenceVariable> correspondences = new HashMap<>(); local
317 newFormalArgumentTypes.add(replaceTypeVariablesWithInferenceVariables(formalArg, correspondences));
319 ResolvedType newReturnType = replaceTypeVariablesWithInferenceVariables(methodType.getReturnType(), correspondences);
323 private ResolvedType replaceTypeVariablesWithInferenceVariables(ResolvedType originalType, Map<ResolvedTypeVariable, InferenceVariable> correspondences) {
325 if (!correspondences.containsKey(originalType.asTypeVariable())) {
326 correspondences.put(originalType.asTypeVariable(), InferenceVariable.unnamed(originalType.asTypeVariable().asTypeParameter()));
328 return correspondences.get(originalType.asTypeVariable());

Completed in 817 milliseconds