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

  /external/opencv3/modules/imgproc/
opencl_kernels_imgproc.cpp 5976 const struct ProgramEntry moments={"moments", member in namespace:cv::ocl::imgproc
    [all...]
  /external/opencv/cv/src/
cvcamshift.cpp 64 CvMoments moments; local
75 moments.m00 = moments.m10 = moments.m01 = 0;
101 CV_CALL( cvMoments( &cur_win, &moments ));
104 if( fabs(moments.m00) < DBL_EPSILON )
107 inv_m00 = moments.inv_sqrt_m00*moments.inv_sqrt_m00;
108 dx = cvRound( moments.m10 * inv_m00 - windowIn.width*0.5 );
109 dy = cvRound( moments.m01 * inv_m00 - windowIn.height*0.5 )
171 CvMoments moments; local
    [all...]
cvmatchcontours.cpp 61 CvMoments moments; local
76 /* first moments calculation */
77 CV_CALL( cvMoments( contour1, &moments ));
79 /* Hu moments calculation */
80 CV_CALL( cvGetHuMoments( &moments, &huMoments ));
91 /* second moments calculation */
92 CV_CALL( cvMoments( contour2, &moments ));
94 /* Hu moments calculation */
95 CV_CALL( cvGetHuMoments( &moments, &huMoments ));
  /external/ImageMagick/MagickCore/
statistic.c 1784 *moments; local
    [all...]
  /external/opencv3/modules/imgproc/src/
moments.cpp 47 // The function calculates center of gravity and the central second order moments
48 static void completeMomentState( Moments* moments )
53 assert( moments != 0 );
55 if( fabs(moments->m00) > DBL_EPSILON )
57 inv_m00 = 1. / moments->m00;
58 cx = moments->m10 * inv_m00;
59 cy = moments->m01 * inv_m00;
63 mu20 = moments->m20 - moments->m10 * cx
556 cv::Moments cv::moments( InputArray _src, bool binary ) function in class:cv
    [all...]
  /external/opencv3/modules/imgproc/test/
test_convhull.cpp 1709 CvMoments moments0, moments; member in class:CV_ContourMomentsTest
    [all...]
  /external/ImageMagick/Magick++/lib/
Image.cpp 3553 Magick::ImageMoments Magick::Image::moments(void) const function in class:Magick::Image
    [all...]

Completed in 1014 milliseconds