HomeSort by relevance Sort by last modified time
    Searched defs:npoints (Results 1 - 25 of 25) sorted by null

  /external/opencv3/modules/videostab/src/
outlier_rejection.cpp 57 int npoints = points0.getMat().checkVector(2); local
58 mask.create(1, npoints, CV_8U);
76 int npoints = points0.getMat().checkVector(2); local
81 mask.create(1, npoints, CV_8U);
93 for (int i = 0; i < npoints; ++i)
global_motion.cpp 68 int npoints = points0.cols;
70 npoints, (float*)points0.data, (float*)points1.data, mask.data);
85 static Mat normalizePoints(int npoints, Point2f *points)
88 for (int i = 0; i < npoints; ++i)
93 cx /= npoints;
94 cy /= npoints;
97 for (int i = 0; i < npoints; ++i)
103 d /= npoints;
106 for (int i = 0; i < npoints; ++i)
121 int npoints, Point2f *points0, Point2f *points1, float *rmse
361 const int npoints = points0.getMat().checkVector(2); local
385 const int npoints = points0.getMat().checkVector(2); local
492 const int npoints = points0.getMat().checkVector(2); local
534 const int npoints = points0.getMat().checkVector(2); local
    [all...]
  /external/opencv3/modules/video/test/ocl/
test_optflowpyrlk.cpp 78 static const int npoints = 1000; local
90 cv::goodFeaturesToTrack(frame0, pts, npoints, 0.01, 0.0);
  /external/opencv3/modules/calib3d/src/
solvepnp.cpp 60 int npoints = std::max(opoints.checkVector(3, CV_32F), opoints.checkVector(3, CV_64F)); local
61 CV_Assert( npoints >= 0 && npoints == std::max(ipoints.checkVector(2, CV_32F), ipoints.checkVector(2, CV_64F)) );
103 CV_Assert( npoints == 4);
229 int npoints = std::max(opoints.checkVector(3, CV_32F), opoints.checkVector(3, CV_64F)); local
230 CV_Assert( npoints >= 0 && npoints == std::max(ipoints.checkVector(2, CV_32F), ipoints.checkVector(2, CV_64F)) );
249 if( npoints == 4 )
277 int npoints1 = compressElems(&opoints_inliers[0], mask, 1, npoints);
278 compressElems(&ipoints_inliers[0], mask, 1, npoints);
    [all...]
five-point.cpp 412 int npoints = points1.checkVector(2); local
453 int npoints = points1.checkVector(2); local
    [all...]
  /external/opencv3/samples/cpp/
stereo_calib.cpp 190 int npoints = 0; local
210 npoints += npt;
212 cout << "average reprojection err = " << err/npoints << endl;
  /external/zopfli/src/zopfli/
blocksplitter.c 155 size_t npoints = 0; local
163 if (lz77splitpoints[npoints] == i) {
164 ZOPFLI_APPEND_DATA(pos, &splitpoints, &npoints);
165 if (npoints == nlz77points) break;
170 assert(npoints == nlz77points);
173 for (i = 0; i < npoints; i++) {
177 for (i = 0; i < npoints; i++) {
193 npoints: the amount of splitpoints found so far.
200 const size_t* splitpoints, size_t npoints,
205 for (i = 0; i <= npoints; i++)
    [all...]
deflate.c 729 size_t npoints = 0; local
731 ZopfliBlockSplitSimple(in, instart, inend, 65535, &splitpoints, &npoints);
734 increases the total size. Leave npoints at 0, this represents 1 block. */
737 options->blocksplittingmax, &splitpoints, &npoints);
740 for (i = 0; i <= npoints; i++) {
742 size_t end = i == npoints ? inend : splitpoints[i];
743 DeflateBlock(options, btype, i == npoints && final, in, start, end,
765 size_t npoints = 0; local
795 increases the total size. Leave npoints at 0, this represents 1 block. */
798 options->blocksplittingmax, &splitpoints, &npoints);
    [all...]
  /external/opencv3/modules/features2d/src/kaze/
nldiffusion_functions.cpp 215 float npoints = 0.0; local
263 npoints++;
269 nthreshold = (int)(npoints*perc);
KAZEFeatures.cpp 315 int npoints = 0, id_repeated = 0; local
381 npoints++;
    [all...]
AKAZEFeatures.cpp 261 int npoints = 0, id_repeated = 0; local
348 npoints++;
    [all...]
  /external/opencv3/modules/imgproc/src/
approx.cpp 678 int npoints = curve.checkVector(2), depth = curve.depth(); local
679 CV_Assert( npoints >= 0 && (depth == CV_32S || depth == CV_32F));
681 if( npoints == 0 )
687 AutoBuffer<Point> _buf(npoints);
688 AutoBuffer<Range> _stack(npoints);
693 nout = approxPolyDP_(curve.ptr<Point>(), npoints, buf, closed, epsilon, &_stack);
695 nout = approxPolyDP_(curve.ptr<Point2f>(), npoints, (Point2f*)buf, closed, epsilon, &_stack);
781 int npoints = src_seq->total, nout = 0; local
782 _buf.allocate(npoints*2);
783 cv::Point *src = _buf, *dst = src + npoints;
    [all...]
convhull.cpp 268 int i, j = 0, npoints = points.checkVector(2, CV_32S); local
269 CV_Assert( npoints >= 0 );
271 if( npoints <= 3 )
290 CV_Assert( 0 <= hcurr && hcurr < npoints );
295 CV_Assert( 0 <= hnext && hnext < npoints );
310 j &= j >= npoints ? 0 : -1;
shapedescr.cpp 341 int npoints = contour.checkVector(2); local
343 CV_Assert(npoints >= 0 && (depth == CV_32F || depth == CV_32S));
345 if( npoints == 0 )
352 Point2f prev = is_float ? ptsf[npoints-1] : Point2f((float)ptsi[npoints-1].x, (float)ptsi[npoints-1].y);
354 for( int i = 0; i < npoints; i++ )
485 int npoints = points.checkVector(2); local
487 CV_Assert(npoints >= 0 && (depth == CV_32F || depth == CV_32S));
492 if( npoints == 0
    [all...]
  /external/libvterm/src/
state.c 209 int npoints = 0; local
219 codepoints, &npoints, state->gsingle_set ? 1 : len,
222 if(state->gsingle_set && npoints)
246 while(i < npoints && vterm_unicode_is_combining(codepoints[i])) {
269 for(; i < npoints; i++) {
273 for(glyph_ends = i + 1; glyph_ends < npoints; glyph_ends++)
319 if(i == npoints - 1) {
    [all...]
  /external/opencv3/modules/calib3d/test/
test_homography.cpp 612 int npoints = (int)(sizeof(pt1data)/sizeof(pt1data[0])/2); local
614 Mat p1(1, npoints, CV_32FC2, pt1data);
615 Mat p2(1, npoints, CV_32FC2, pt2data);
    [all...]
test_cameracalibration_badarg.cpp 71 CvMat* npoints; member in struct:CV_CameraCalibrationBadArgTest::C_Caller
81 cvCalibrateCamera2(objPts, imgPts, npoints, imageSize,
102 CvMat objPts, imgPts, npoints, cameraMatrix, distCoeffs, rvecs, tvecs; local
109 caller.npoints = &npoints;
145 npoints = npoints_cpp;
163 bad_caller.npoints = 0;
164 errors += run_test_case( CV_StsBadArg, "Zero passed in npoints", bad_caller );
188 bad_caller.npoints = &bad_npts_c1;
189 errors += run_test_case( CV_StsUnsupportedFormat, "Bad npoints format", bad_caller )
    [all...]
test_cameracalibration.cpp 534 int nPoints = etalonSize.width * etalonSize.height;
535 project( nPoints,
536 objectPoints + currImage * nPoints,
541 reprojectPoints + currImage * nPoints);
1228 int npoints = opoints.cols*opoints.rows*opoints.channels()\/3; local
1422 int npoints = patternSize.width*patternSize.height; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterDrawRepresentation.java 336 int npoints = mark.noPoints * 2; local
337 for (int j = 0; j < npoints; j++) {
  /external/opencv3/modules/video/src/
lkpyramid.cpp 1109 int level=0, i, npoints; local
    [all...]
  /external/opencv3/modules/core/src/
persistence.cpp 5570 int i, npoints = (int)keypoints.size(); local
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-swt-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
jfreechart-swt-1.0.9.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 614 milliseconds