HomeSort by relevance Sort by last modified time
    Searched defs:numPoints (Results 1 - 25 of 43) 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...]
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...]
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...]
cvepilines.cpp     [all...]
  /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/support/v4/donut/android/support/v4/view/animation/
PathInterpolatorDonut.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/opencv3/modules/calib3d/src/
triangulate.cpp 66 int numPoints = projPoints1->cols;
68 if( numPoints < 1 )
71 if( projPoints2->cols != numPoints || points4D->cols != numPoints )
94 for( int i = 0; i < numPoints; i++ )/* For each point */
132 for( 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;
  /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/deqp/modules/gles2/functional/
es2fShaderBuiltinVarTests.cpp 465 const int numPoints = 8;
467 vector<tcu::Vec3> coords (numPoints);
  /external/deqp/modules/gles3/functional/
es3fShaderBuiltinVarTests.cpp 488 const int numPoints = 8;
490 vector<tcu::Vec3> coords (numPoints);
    [all...]
  /frameworks/base/core/jni/android/graphics/
Path.cpp 452 size_t numPoints = segmentPoints.size();
453 size_t approximationArraySize = numPoints * 3;
458 for (size_t i = 0; i < numPoints; i++) {
  /frameworks/base/libs/hwui/
PathTessellator.cpp 797 int numPoints = count / 2;
799 dstBuffer.alloc<TYPE>(numPoints * verticesPerPoint + (numPoints - 1) * 2);
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testautomation_rect.c     [all...]
  /external/opencv3/modules/calib3d/test/
test_cameracalibration.cpp 324 int numPoints;
393 numPoints = etalonSize.width * etalonSize.height;
406 imagePoints = (CvPoint2D64f*)cvAlloc( numPoints *
409 objectPoints = (CvPoint3D64f*)cvAlloc( numPoints *
412 reprojectPoints = (CvPoint2D64f*)cvAlloc( numPoints *
435 for( currPoint = 0; currPoint < numPoints; currPoint++ )
452 for( currPoint = 0; currPoint < numPoints; currPoint++ )
    [all...]
  /external/skia/tests/
PathTest.cpp     [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 
  /external/robolectric/v1/lib/main/
android.jar 

Completed in 849 milliseconds

1 2