Searched refs:numPoints (Results 1 - 25 of 29) sorted by relevance

12

/external/opencv/cvaux/src/
H A Dcvlevmartrif.cpp82 int numPoints; local
83 numPoints = (vectX->rows - 36)/4;
85 if( numPoints < 1 )//!!! Need to correct this minimal number of points
90 if( Jacobian->rows == numPoints*6 || Jacobian->cols != 36+numPoints*4 )
92 CV_ERROR( CV_StsUnmatchedSizes, "Size of Jacobian is not correct it must be 6*numPoints x (36+numPoints*4)" );
117 for( currProjPoint = 0; currProjPoint < numPoints; currProjPoint++ )
143 currMatr*numPoints*2+currProjPoint*2+j, 36+currProjPoint*4+i,
151 cvmSet(Jacobian,currMatr*numPoints*
197 int numPoints; local
293 int numPoints; local
453 int numPoints; local
[all...]
H A Dcvlevmarprojbandle.cpp90 int numPoints; local
91 numPoints = points4D->cols;
93 if( numPoints < 1 )
118 if( status->rows != 1 || status->cols != numPoints )
150 for( currPoint = 0; currPoint < numPoints; currPoint++ )
248 int numPoints; local
249 numPoints = presPoints->cols;
251 if( numPoints < 1 )
276 if( presPoints->rows != 1 || presPoints->cols != numPoints )
300 for( currProjPoint = 0; currProjPoint < numPoints; currProjPoin
389 int numPoints; local
477 int numPoints; local
650 int numPoints; local
759 int numPoints; local
916 int numPoints; local
1089 int numPoints = 0; local
[all...]
H A Dcvtrifocal.cpp137 int numPoints; local
138 numPoints = points->cols;
139 if( numPoints <= 0 || numPoints != normPoints->cols )
162 for( i = 0; i < numPoints; i++ )
523 int numPoints; local
524 numPoints = points4D->cols;
525 if( numPoints < 1 )
530 if( numPoints != projPoints->cols )
551 CV_CALL( tmpProjPoints = cvCreateMat(3,numPoints,CV_64
646 int numPoints; local
832 int numPoints; local
1798 int numPoints; local
1967 int numPoints; local
2085 int numPoints; local
[all...]
H A Dcvcorrimages.cpp242 int numPoints; local
243 numPoints = points1->cols;
245 if( numPoints <= 0 )
250 if( points2->cols != numPoints || pntStatus1->cols != numPoints || pntStatus2->cols != numPoints )
321 for( i = 0; i < numPoints; i++ )
341 memset(stat2,0,sizeof(uchar)*numPoints);
348 for( i = 0; i < numPoints; i++ )
378 for( i = 0; i < numPoints;
860 int numPoints; local
977 int numPoints; local
[all...]
H A D_cvvm.h251 int numPoints,
H A Dcvepilines.cpp1839 int numPoints = 0; local
1885 candPoints[numPoints] = cornerPoint;
1886 numPoints++;
1894 candPoints[numPoints] = cornerPoint;
1895 numPoints++;
1903 candPoints[numPoints] = cornerPoint;
1904 numPoints++;
1912 candPoints[numPoints] = cornerPoint;
1913 numPoints++;
1923 candPoints[numPoints
[all...]
/external/eigen/Eigen/src/Eigen2Support/
H A DLeastSquares.h64 * @param numPoints the number of points
85 void linearRegression(int numPoints, argument
95 fitHyperplane(numPoints, points, &h);
130 void fitHyperplane(int numPoints, argument
138 ei_assert(numPoints >= 1);
144 for(int i = 0; i < numPoints; ++i)
146 mean /= numPoints;
151 for(int i = 0; i < numPoints; ++i)
/external/eigen/test/eigen2/
H A Deigen2_regression.cpp15 void makeNoisyCohyperplanarPoints(int numPoints, argument
31 // now pick numPoints random points on this hyperplane
32 for(int i = 0; i < numPoints; i++)
46 for(int i = 0; i < numPoints; i++ )
51 void check_linearRegression(int numPoints, argument
59 linearRegression(numPoints, points, &result, 1);
66 void check_fitHyperplane(int numPoints, argument
73 fitHyperplane(numPoints, points, &result);
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftoutln.h128 /* numPoints :: The maximum number of points within the outline. */
132 /* This value must be in the range 0 to `numPoints'. */
146 FT_UInt numPoints,
153 FT_UInt numPoints,
/external/freetype/include/
H A Dftoutln.h135 /* numPoints :: The maximum number of points within the outline. */
139 /* This value must be in the range 0 to `numPoints'. */
153 FT_UInt numPoints,
160 FT_UInt numPoints,
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftoutln.h128 /* numPoints :: The maximum number of points within the outline. */
132 /* This value must be in the range 0 to `numPoints'. */
146 FT_UInt numPoints,
153 FT_UInt numPoints,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftoutln.h128 /* numPoints :: The maximum number of points within the outline. */
132 /* This value must be in the range 0 to `numPoints'. */
146 FT_UInt numPoints,
153 FT_UInt numPoints,
/external/opencv/cv/src/
H A Dcvposit.cpp55 int numPoints,
62 /* buffer for storing weakImagePoints = numPoints * 2 * float */
66 int N = numPoints - 1;
75 if( numPoints < 4 )
96 for( i = 0; i < numPoints - 1; i++ )
335 cvCreatePOSITObject( CvPoint3D32f * points, int numPoints )
343 IPPI_CALL( icvCreatePOSITObject( points, numPoints, &pObject ));
54 icvCreatePOSITObject( CvPoint3D32f *points, int numPoints, CvPOSITObject **ppObject ) argument
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DRegionTracker.h79 void didDrawPoints(const GraphicsContext*, SkCanvas::PointMode, int numPoints, const SkPoint[], const SkPaint&);
H A DRegionTracker.cpp261 void RegionTracker::didDrawPoints(const GraphicsContext* context, SkCanvas::PointMode mode, int numPoints, const SkPoint points[], const SkPaint& paint) argument
263 if (!numPoints)
272 for (int i = 1; i < numPoints; ++i) {
H A DGraphicsContext.cpp582 void GraphicsContext::drawConvexPolygon(size_t numPoints, const FloatPoint* points, bool shouldAntialias) argument
587 if (numPoints <= 1)
591 setPathFromConvexPoints(&path, numPoints, points);
1537 void GraphicsContext::clipConvexPolygon(size_t numPoints, const FloatPoint* points, bool antialiased) argument
1542 if (numPoints <= 1)
1546 setPathFromConvexPoints(&path, numPoints, points);
1818 void GraphicsContext::setPathFromConvexPoints(SkPath* path, size_t numPoints, const FloatPoint* points) argument
1820 path->incReserve(numPoints);
1823 for (size_t i = 1; i < numPoints; ++i) {
1835 if (numPoints
[all...]
H A DGraphicsContext.h254 void drawConvexPolygon(size_t numPoints, const FloatPoint*, bool shouldAntialias = false);
320 void clipConvexPolygon(size_t numPoints, const FloatPoint*, bool antialias = true);
/external/deqp/modules/gles3/stress/
H A Des3sLongRunningShaderTests.cpp242 void genPositions (const tcu::RenderTarget& renderTarget, int numPoints, Vec2* positions) argument
247 if (width*height < numPoints)
250 for (int pointNdx = 0; pointNdx < numPoints; pointNdx++)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAreaElement.cpp142 int numPoints = m_coords.size() / 2; local
144 for (int i = 1; i < numPoints; ++i)
/external/chromium_org/third_party/freetype/src/base/
H A Dftoutln.c296 FT_UInt numPoints,
309 (FT_UInt)numContours > numPoints )
312 if ( numPoints > FT_OUTLINE_POINTS_MAX )
315 if ( FT_NEW_ARRAY( anoutline->points, numPoints ) ||
316 FT_NEW_ARRAY( anoutline->tags, numPoints ) ||
320 anoutline->n_points = (FT_UShort)numPoints;
338 FT_UInt numPoints,
345 return FT_Outline_New_Internal( library->memory, numPoints,
/external/freetype/src/base/
H A Dftoutln.c296 FT_UInt numPoints,
309 (FT_UInt)numContours > numPoints )
312 if ( numPoints > FT_OUTLINE_POINTS_MAX )
315 if ( FT_NEW_ARRAY( anoutline->points, numPoints ) ||
316 FT_NEW_ARRAY( anoutline->tags, numPoints ) ||
320 anoutline->n_points = (FT_UShort)numPoints;
338 FT_UInt numPoints,
345 return FT_Outline_New_Internal( library->memory, numPoints,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftoutln.c296 FT_UInt numPoints,
309 (FT_UInt)numContours > numPoints )
312 if ( numPoints > FT_OUTLINE_POINTS_MAX )
315 if ( FT_NEW_ARRAY( anoutline->points, numPoints ) ||
316 FT_NEW_ARRAY( anoutline->tags, numPoints ) ||
320 anoutline->n_points = (FT_UShort)numPoints;
338 FT_UInt numPoints,
345 return FT_Outline_New_Internal( library->memory, numPoints,
/external/chromium_org/third_party/skia/tests/
H A DPathTest.cpp2526 int numPoints = 0; local
2535 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25];
2536 p.moveTo(expectedPts[numPoints]);
2537 lastMoveToPt = expectedPts[numPoints];
2538 numPoints += 1;
2544 expectedPts[numPoints++] = lastMoveToPt;
2548 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25];
2549 p.lineTo(expectedPts[numPoints]);
2550 numPoints += 1;
2555 expectedPts[numPoints
[all...]
/external/skia/tests/
H A DPathTest.cpp2461 int numPoints = 0; local
2470 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25];
2471 p.moveTo(expectedPts[numPoints]);
2472 lastMoveToPt = expectedPts[numPoints];
2473 numPoints += 1;
2479 expectedPts[numPoints++] = lastMoveToPt;
2483 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25];
2484 p.lineTo(expectedPts[numPoints]);
2485 numPoints += 1;
2490 expectedPts[numPoints
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderBuiltinVarTests.cpp459 const int numPoints = 8; local
461 vector<tcu::Vec3> coords (numPoints);

Completed in 303 milliseconds

12