HomeSort by relevance Sort by last modified time
    Searched refs:pt2 (Results 26 - 50 of 112) sorted by null

12 3 4 5

  /external/opencv/cv/src/
cvpgh.cpp 192 CvPoint pt1, pt2; local
195 CV_READ_EDGE( pt1, pt2, reader1 );
197 dx = pt2.x - pt1.x;
198 dy = pt2.y - pt1.y;
214 CvPoint pt1, pt2; local
218 CV_READ_EDGE( pt1, pt2, reader1 );
220 dx = pt2.x - pt1.x;
221 dy = pt2.y - pt1.y;
243 int d2 = (pt4.y - pt1.y) * dx - (pt2.x - pt1.x) * dy;
cvcontourtree.cpp 73 CvPoint *pt1, *pt2; /* pointer to current points */ local
161 pt2 = pt_n;
172 pt2 = pt_n;
182 pt2 = pt_p;
328 pt2[i_buf] = t;
380 t = pt2[0];
381 tn1 = pt2[1];
382 tn2 = pt2[2];
383 tp1 = pt2[3];
  /external/opencv3/samples/cpp/
squares.cpp 36 // from pt0->pt1 and from pt0->pt2
37 static double angle( Point pt1, Point pt2, Point pt0 )
41 double dx2 = pt2.x - pt0.x;
42 double dy2 = pt2.y - pt0.y;
  /external/opencv3/samples/tapi/
squares.cpp 22 // from pt0->pt1 and from pt0->pt2
23 static double angle( Point pt1, Point pt2, Point pt0 )
27 double dx2 = pt2.x - pt0.x;
28 double dy2 = pt2.y - pt0.y;
  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
HoughLines_Demo.cpp 103 Point pt2( cvRound(x0 - alpha*(-sin_t)), cvRound(y0 - alpha*cos_t) );
104 line( standard_hough, pt1, pt2, Scalar(255,0,0), 3, LINE_AA);
  /external/pdfium/xfa/src/fdp/include/
fde_rdv.h 51 const CFX_PointF& pt2,
72 const CFX_PointF& pt2,
  /external/pdfium/xfa/src/fdp/src/fde/
fde_geobject.h 26 virtual void AddLine(const CFX_PointF& pt1, const CFX_PointF& pt2);
fde_gedevice.h 42 const CFX_PointF& pt2,
63 const CFX_PointF& pt2,
  /external/dng_sdk/source/
dng_rect.h 243 const dng_point_real64 &pt2)
244 : t (Min_real64 (pt1.v, pt2.v))
245 , l (Min_real64 (pt1.h, pt2.h))
246 , b (Max_real64 (pt1.v, pt2.v))
247 , r (Max_real64 (pt1.h, pt2.h))
dng_bad_pixels.cpp 395 const dng_point &pt2 = Point (j); local
397 if (pt2.v < pt.v - (int32) radius)
402 if (Abs_int32 (pt2.h - pt.h) <= radius)
414 const dng_point &pt2 = Point (k); local
416 if (pt2.v > pt.v + (int32) radius)
421 if (Abs_int32 (pt2.h - pt.h) <= radius)
510 const dng_point &pt2 = Point (j); local
512 if (pt2.v < pt.v)
517 if (pt2 == pt)
529 const dng_point &pt2 = Point (k) local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_renderer.c 192 float pt0[2], pt1[2], pt2[2], pt3[2]; local
198 pt2[0] = (srcX + width);
199 pt2[1] = (srcY + height);
206 map_point((float *)src_matrix, pt2[0], pt2[1], &pt2[0], &pt2[1]);
212 s2 = pt2[0] / src->width0;
216 t2 = pt2[1] / src->height0;
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_renderer.c 145 float pt0[2], pt1[2], pt2[2], pt3[2]; local
151 pt2[0] = (srcX + width);
152 pt2[1] = (srcY + height);
159 map_point(src_matrix, pt2[0], pt2[1], &pt2[0], &pt2[1]);
165 s2 = pt2[0] / src->width0;
169 t2 = pt2[1] / src->height0;
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_ScrollBar.cpp 149 CPDF_Point pt2(ptCenter.x + PWL_TRIANGLE_HALFLEN * 0.5f,
158 sButton << pt2.x << " " << pt2.y << " l\n";
167 CPDF_Point pt2(ptCenter.x - PWL_TRIANGLE_HALFLEN * 0.5f,
176 sButton << pt2.x << " " << pt2.y << " l\n";
192 CPDF_Point pt2(ptCenter.x + PWL_TRIANGLE_HALFLEN,
200 sButton << pt2.x << " " << pt2.y << " l\n";
210 CPDF_Point pt2(ptCenter.x + PWL_TRIANGLE_HALFLEN
    [all...]
PWL_ComboBox.cpp 122 CPDF_Point pt2(ptCenter.x + PWL_CBBUTTON_TRIANGLE_HALFLEN,
133 sButton << pt2.x << " " << pt2.y << " l\n";
153 CPDF_Point pt2(ptCenter.x + PWL_CBBUTTON_TRIANGLE_HALFLEN,
166 path.SetPoint(1, pt2.x, pt2.y, FXPT_LINETO);
  /external/opencv3/modules/imgproc/test/
test_contours.cpp 360 CvPoint pt2; local
363 CV_READ_SEQ_ELEM( pt2, reader2 );
365 if( pt1.x != pt2.x || pt1.y != pt2.y )
369 "in the approximated chain ((%d,%d) vs (%d,%d)", count3, i, pt1.x, pt1.y, pt2.x, pt2.y );
  /external/opencv3/modules/cudaimgproc/test/
test_hough.cpp 71 cv::Point pt1, pt2; local
76 pt2.x = cvRound(x0 - 1000*(-b));
77 pt2.y = cvRound(y0 - 1000*(a));
78 cv::line(dst, pt1, pt2, cv::Scalar::all(255));
  /external/pdfium/xfa/src/fdp/src/tto/
fde_textout.cpp 852 CFX_PointF pt1, pt2; local
857 pt2.x = rtText.left;
858 pt2.y = rtText.bottom();
862 pt2.x = rtText.right();
863 pt2.y = rtText.bottom();
865 pPath->AddLine(pt1, pt2);
873 pt2.x = pt1.x;
874 pt2.y = rtText.bottom();
878 pt2.x = rtText.right();
879 pt2.y = pt1.y;
    [all...]
  /external/pdfium/xfa/src/fwl/src/theme/
checkboxtp.cpp 466 CFX_PointF pt2; local
467 pt2.Set(fWidth / 4.5f, fBottom + fHeight / 16.0f);
497 px2 = pt21.x - pt2.x;
498 py2 = pt21.y - pt2.y;
501 pt2.x + px2 * FWLTHEME_BEZIER,
502 pt2.y + py2 * FWLTHEME_BEZIER, pt2.x, pt2.y);
503 px1 = pt23.x - pt2.x;
504 py1 = pt23.y - pt2.y;
    [all...]
  /external/skia/src/pathops/
SkIntersections.cpp 94 void SkIntersections::insertNear(double one, double two, const SkDPoint& pt1, const SkDPoint& pt2) {
97 SkASSERT(pt1 != pt2);
100 fPt2[one ? 1 : 0] = pt2;
SkPathOpsPoint.h 13 inline bool AlmostEqualUlps(const SkPoint& pt1, const SkPoint& pt2) {
14 return AlmostEqualUlps(pt1.fX, pt2.fX) && AlmostEqualUlps(pt1.fY, pt2.fY);
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_pageobjs.cpp 52 CPDF_Point pt1(0, 0), pt2(1, 0);
54 pUser2Device->Transform(pt2.x, pt2.y);
57 (FX_FLOAT)FXSYS_fabs((pt2.x + pt2.y) - (pt1.x + pt1.y));
72 CPDF_Point pt1(0, 0), pt2(1, 0);
74 pUser2Device->Transform(pt2.x, pt2.y);
77 (FX_FLOAT)FXSYS_fabs((pt2.x + pt2.y) - (pt1.x + pt1.y))
    [all...]
  /external/opencv3/modules/features2d/src/
fast.cpp 318 Point3i* pt2 = (Point3i*)(m2.ptr<int>() + 1); local
321 std::sort(pt2, pt2 + newcounter, cmp_pt<Point3i>());
324 keypoints.push_back(KeyPoint((float)pt2[i].x, (float)pt2[i].y, 7.f, -1, (float)pt2[i].z));
draw.cpp 180 pt2 = kp2.pt, local
181 dpt2 = Point2f( std::min(pt2.x+outImg1.size().width, float(outImg.size().width-1)), pt2.y );
  /external/opencv3/modules/shape/src/
tps_trans.cpp 221 Point2f pt2=pts2.at<Point2f>(0,matches[i].trainIdx); local
222 shape2.at<float>(i,0) = pt2.x;
223 shape2.at<float>(i,1) = pt2.y;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdipluspath.h 121 Status AddBezier(const PointF& pt1, const PointF& pt2,
125 pt1.X, pt1.Y, pt2.X, pt2.Y,
128 Status AddBezier(const Point& pt1, const Point& pt2,
132 pt1.X, pt1.Y, pt2.X, pt2.Y,
229 Status AddLine(const PointF& pt1, const PointF& pt2)
232 pt1.X, pt1.Y, pt2.X, pt2.Y));
234 Status AddLine(const Point& pt1, const Point& pt2)
    [all...]

Completed in 947 milliseconds

12 3 4 5