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

1 2 3

  /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...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btConvexPointCloudShape.java 65 public btConvexPointCloudShape(btVector3 points, int numPoints, Vector3 localScaling, boolean computeAabb) {
66 this(CollisionJNI.new_btConvexPointCloudShape__SWIG_1(btVector3.getCPtr(points), points, numPoints, localScaling, computeAabb), true);
69 public btConvexPointCloudShape(btVector3 points, int numPoints, Vector3 localScaling) {
70 this(CollisionJNI.new_btConvexPointCloudShape__SWIG_2(btVector3.getCPtr(points), points, numPoints, localScaling), true);
73 public void setPoints(btVector3 points, int numPoints, boolean computeAabb, Vector3 localScaling) {
74 CollisionJNI.btConvexPointCloudShape_setPoints__SWIG_0(swigCPtr, this, btVector3.getCPtr(points), points, numPoints, computeAabb, localScaling);
77 public void setPoints(btVector3 points, int numPoints, boolean computeAabb) {
78 CollisionJNI.btConvexPointCloudShape_setPoints__SWIG_1(swigCPtr, this, btVector3.getCPtr(points), points, numPoints, computeAabb);
81 public void setPoints(btVector3 points, int numPoints) {
82 CollisionJNI.btConvexPointCloudShape_setPoints__SWIG_2(swigCPtr, this, btVector3.getCPtr(points), points, numPoints);
    [all...]
btConvexHullShape.java 61 static private long SwigConstructbtConvexHullShape(java.nio.FloatBuffer points, int numPoints, int stride) {
63 return CollisionJNI.new_btConvexHullShape__SWIG_0(points, numPoints, stride);
66 public btConvexHullShape(java.nio.FloatBuffer points, int numPoints, int stride) {
67 this(btConvexHullShape.SwigConstructbtConvexHullShape(points, numPoints, stride), true);
70 static private long SwigConstructbtConvexHullShape(java.nio.FloatBuffer points, int numPoints) {
72 return CollisionJNI.new_btConvexHullShape__SWIG_1(points, numPoints);
75 public btConvexHullShape(java.nio.FloatBuffer points, int numPoints) {
76 this(btConvexHullShape.SwigConstructbtConvexHullShape(points, numPoints), true);
  /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;
150 for(int i = 0; i < numPoints; ++i)
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btConvexPointCloudShape.h 40 btConvexPointCloudShape(btVector3* points,int numPoints, const btVector3& localScaling,bool computeAabb = true)
45 m_numPoints = numPoints;
51 void setPoints (btVector3* points, int numPoints, bool computeAabb = true,const btVector3& localScaling=btVector3(1.f,1.f,1.f))
54 m_numPoints = numPoints;
btConvexHullShape.h 37 btConvexHullShape(const btScalar* points=0,int numPoints=0, int stride=sizeof(btVector3));
btConvexHullShape.cpp 26 btConvexHullShape ::btConvexHullShape (const btScalar* points,int numPoints,int stride) : btPolyhedralConvexAabbCachingShape ()
29 m_unscaledPoints.resize(numPoints);
33 for (int i=0;i<numPoints;i++)
  /frameworks/support/compat/gingerbread/android/support/v4/view/animation/
PathInterpolatorGingerbread.java 40 final int numPoints = (int) (pathLength / PRECISION) + 1;
42 mX = new float[numPoints];
43 mY = new float[numPoints];
46 for (int i = 0; i < numPoints; ++i) {
47 final float distance = (i * pathLength) / (numPoints - 1);
  /packages/apps/PhoneCommon/src/com/android/phone/common/compat/
PathInterpolatorCompat.java 47 final int numPoints = (int) (pathLength / PRECISION) + 1;
49 mX = new float[numPoints];
50 mY = new float[numPoints];
53 for (int i = 0; i < numPoints; ++i) {
54 final float distance = (i * pathLength) / (numPoints - 1);
  /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/packages/SystemUI/src/com/android/systemui/qs/
PathInterpolatorBuilder.java 60 int numPoints = pointComponents.length / 3;
67 mX = new float[numPoints];
68 mY = new float[numPoints];
69 mDist = new float[numPoints];
73 for (int i = 0; i < numPoints; i++) {
97 for (int i = 0; i < numPoints; i++) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
FreePathInterpolator.java 59 int numPoints = pointComponents.length / 3;
61 mX = new float[numPoints];
62 mY = new float[numPoints];
68 for (int i = 0; i < numPoints; i++) {
  /frameworks/base/core/java/android/animation/
PathKeyframes.java 67 int numPoints = mKeyframeData.length / 3;
71 return interpolateInRange(fraction, numPoints - 2, numPoints - 1);
75 return pointForIndex(numPoints - 1);
79 int high = numPoints - 1;
  /external/freetype/include/freetype/
ftoutln.h 142 /* numPoints :: The maximum number of points within the outline. */
146 /* This value must be in the range 0 to `numPoints'. */
160 FT_UInt numPoints,
167 FT_UInt numPoints,
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/
ftoutln.h 138 /* numPoints :: The maximum number of points within the outline. */
142 /* This value must be in the range 0 to `numPoints'. */
156 FT_UInt numPoints,
163 FT_UInt numPoints,
    [all...]
  /external/pdfium/third_party/freetype/include/freetype/
ftoutln.h 138 /* numPoints :: The maximum number of points within the outline. */
142 /* This value must be in the range 0 to `numPoints'. */
156 FT_UInt numPoints,
163 FT_UInt numPoints,
    [all...]
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftoutln.h 138 /* numPoints :: The maximum number of points within the outline. */
142 /* This value must be in the range 0 to `numPoints'. */
156 FT_UInt numPoints,
163 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/opencv3/modules/calib3d/src/
posit.cpp 56 int numPoints,
63 /* buffer for storing weakImagePoints = numPoints * 2 * float */
67 int N = numPoints - 1;
76 if( numPoints < 4 )
97 for( i = 0; i < numPoints - 1; i++ )
336 cvCreatePOSITObject( CvPoint3D32f * points, int numPoints )
339 IPPI_CALL( icvCreatePOSITObject( points, numPoints, &pObject ));
  /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/opencv3/3rdparty/openexr/Imath/
ImathMatrixAlgo.cpp 106 procrustesRotationAndTranslation (const Vec3<T>* A, const Vec3<T>* B, const T* weights, const size_t numPoints, const bool doScale)
108 if (numPoints == 0)
118 for (int i = 0; i < numPoints; ++i)
123 weightsSum = (double) numPoints;
127 for (int i = 0; i < numPoints; ++i)
155 for (int i = 0; i < numPoints; ++i)
160 for (int i = 0; i < numPoints; ++i)
176 if (doScale && numPoints > 1)
200 for (int i = 0; i < numPoints; ++i)
205 for (int i = 0; i < numPoints; ++i
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/
com.badlogic.gdx.physics.box2d.Contact.cpp 14 int numPoints = contact->GetManifold()->pointCount;
19 for( int i = 0; i < numPoints; i++ )
28 return numPoints;

Completed in 2227 milliseconds

1 2 3