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

1 2

  /external/opencv/cvaux/src/
cvlevmartrif.cpp 82 int numPoints;
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*2+currProjPoint*2,currMatr*12+i,X[i]/piX[2]);//x' p1
    [all...]
cvlevmarprojbandle.cpp 90 int numPoints;
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;
249 numPoints = presPoints->cols;
251 if( numPoints < 1 )
276 if( presPoints->rows != 1 || presPoints->cols != numPoints )
300 for( currProjPoint = 0; currProjPoint < numPoints; currProjPoint++
    [all...]
cvtrifocal.cpp 137 int numPoints;
138 numPoints = points->cols;
139 if( numPoints <= 0 || numPoints != normPoints->cols )
162 for( i = 0; i < numPoints; i++ )
523 int numPoints;
524 numPoints = points4D->cols;
525 if( numPoints < 1 )
530 if( numPoints != projPoints->cols )
551 CV_CALL( tmpProjPoints = cvCreateMat(3,numPoints,CV_64F) )
    [all...]
cvcorrimages.cpp 242 int numPoints;
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; i++
    [all...]
_cvvm.h 251 int numPoints,
259 int numpoints,
cvepilines.cpp     [all...]
  /external/eigen/Eigen/src/Eigen2Support/
LeastSquares.h 64 * @param numPoints the number of points
85 void linearRegression(int numPoints,
95 fitHyperplane(numPoints, points, &h);
130 void fitHyperplane(int numPoints,
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/
eigen2_regression.cpp 15 void makeNoisyCohyperplanarPoints(int numPoints,
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,
59 linearRegression(numPoints, points, &result, 1);
66 void check_fitHyperplane(int numPoints,
73 fitHyperplane(numPoints, points, &result);
  /frameworks/base/core/java/android/animation/
PathKeyframes.java 66 int numPoints = mKeyframeData.length / 3;
70 return interpolateInRange(fraction, numPoints - 2, numPoints - 1);
74 return pointForIndex(numPoints - 1);
78 int high = numPoints - 1;
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 160 int numPoints = pointComponents.length / 3;
167 mX = new float[numPoints];
168 mY = new float[numPoints];
172 for (int i = 0; i < numPoints; i++) {
  /external/chromium_org/third_party/freetype/include/freetype/
ftoutln.h 128 /* 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,
    [all...]
  /external/freetype/include/
ftoutln.h 135 /* 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,
    [all...]
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftoutln.h 128 /* 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,
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftoutln.h 128 /* 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,
    [all...]
  /external/opencv/cv/src/
cvposit.cpp 55 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 ));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
OpaqueRegionSkia.h 67 void didDrawPoints(const GraphicsContext*, SkCanvas::PointMode, int numPoints, const SkPoint[], const SkPaint&);
OpaqueRegionSkia.cpp 239 void OpaqueRegionSkia::didDrawPoints(const GraphicsContext* context, SkCanvas::PointMode mode, int numPoints, const SkPoint points[], const SkPaint& paint)
242 if (!numPoints)
251 for (int i = 1; i < numPoints; ++i) {
  /external/deqp/modules/gles3/stress/
es3sLongRunningShaderTests.cpp 242 void genPositions (const tcu::RenderTarget& renderTarget, int numPoints, Vec2* positions)
247 if (width*height < numPoints)
250 for (int pointNdx = 0; pointNdx < numPoints; pointNdx++)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAreaElement.cpp 143 int numPoints = m_coords.size() / 2;
145 for (int i = 1; i < numPoints; ++i)
  /external/chromium_org/third_party/freetype/src/base/
ftoutln.c 296 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/
ftoutln.c 296 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/
ftoutln.c 296 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/
PathTest.cpp     [all...]
  /external/skia/tests/
PathTest.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext.cpp 548 void GraphicsContext::drawConvexPolygon(size_t numPoints, const FloatPoint* points, bool shouldAntialias)
553 if (numPoints <= 1)
557 setPathFromConvexPoints(&path, numPoints, points);
    [all...]

Completed in 675 milliseconds

1 2