Lines Matching refs:hsize
23930 +bool db_StabilizationSmoother::smoothMotionAdaptive(/*VP_BIMG *bimg,*/int hsize, int vsize, VP_MOT…
23938 +// int hsize = bimg->w;
23941 + double border_x = border_factor * hsize;
23953 + VP_PAR delta = vp_motion_cornerdiff(&testMotion, &identityMotion, 0, 0,(int)hsize, (int)vs…
23974 + (void) vp_zoom_motion2d(&tmpMotion, &testMotion, 1, hsize, vsize, (double)f_zoom); // …
23977 + VP_WARP_POINT_2D(hsize - 1, 0, testMotion, p2x, p2y);
23978 + VP_WARP_POINT_2D(hsize - 1, vsize - 1, testMotion, p3x, p3y);
23981 + if (!is_point_in_rect((double)p1x,(double)p1y,-border_x,-border_y,(double)(hsize+2.0*b…
23984 + if (!is_point_in_rect((double)p2x, (double)p2y,-border_x,-border_y,(double)(hsize+2.0*…
23987 + if (!is_point_in_rect((double)p3x,(double)p3y,-border_x,-border_y,(double)(hsize+2.0*b…
23990 + if (!is_point_in_rect((double)p4x, (double)p4y,-border_x,-border_y,(double)(hsize+2.0*…
24202 + * \param hsize width of the image being aligned
24207 + bool smoothMotionAdaptive(/*VP_BIMG *bimg,*/int hsize, int vsize, VP_MOTION *inmot, VP_MOTION …
24258 + * \param hsize width of the image
24261 + inline void setSize(int hsize, int vsize) { f_hsize = hsize; f_vsize = vsize; }