HomeSort by relevance Sort by last modified time
    Searched full:moments (Results 1 - 25 of 39) sorted by null

1 2

  /external/opencv/cv/src/
cvmoments.cpp 43 /* The function calculates center of gravity and central second order moments */
45 icvCompleteMomentState( CvMoments* moments )
50 assert( moments != 0 );
51 moments->inv_sqrt_m00 = 0;
53 if( fabs(moments->m00) > DBL_EPSILON )
55 double inv_m00 = 1. / moments->m00;
56 cx = moments->m10 * inv_m00;
57 cy = moments->m01 * inv_m00;
58 moments->inv_sqrt_m00 = sqrt( fabs(inv_m00) );
62 mu20 = moments->m20 - moments->m10 * cx
    [all...]
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 ));
_cvipp.h 70 * Moments *
    [all...]
cvshapedescr.cpp 566 double a00; /* unnormalized moments m00 */
    [all...]
  /external/opencv/cv/include/
cvtypes.h 50 /* spatial and central moments */
53 double m00, m10, m01, m20, m11, m02, m30, m21, m12, m03; /* spatial moments */
54 double mu20, mu11, mu02, mu30, mu21, mu12, mu03; /* central moments */
cv.h 347 /* Calculates all spatial and central moments up to the 3rd order */
348 CVAPI(void) cvMoments( const CvArr* arr, CvMoments* moments, int binary CV_DEFAULT(0));
350 /* Retrieve particular spatial, central or normalized central moments */
351 CVAPI(double) cvGetSpatialMoment( CvMoments* moments, int x_order, int y_order );
352 CVAPI(double) cvGetCentralMoment( CvMoments* moments, int x_order, int y_order );
353 CVAPI(double) cvGetNormalizedCentralMoment( CvMoments* moments,
356 /* Calculates 7 Hu's invariants from precalculated spatial and central moments */
357 CVAPI(void) cvGetHuMoments( CvMoments* moments, CvHuMoments* hu_moments );
757 /* Compares two contours by matching their moments */
    [all...]
cvcompat.h 344 #define cvContourMoments( contour, moments ) \
345 cvMoments( contour, moments, 0 )
    [all...]
  /external/webkit/Source/WebCore/platform/sql/
SQLiteDatabase.h 97 // NORMAL - SQLite pauses at some critical moments when writing, but much less than FULL
  /frameworks/base/services/java/com/android/server/
LightsService.java 137 * final moments of the froyo release to support flashlight apps that had been using the private
  /packages/apps/Browser/src/com/android/browser/
WallpaperHandler.java 68 // their background so it may take a few moments to perform the
  /frameworks/base/core/tests/coretests/src/android/util/
PatternsTest.java 92 "top-five-moments-from-eric-schmidt\u2019s-talk-in-abu-dhabi/").matches();
  /external/qemu/hw/
bt-hci-csr.c 367 /* Moments later... (but shorter than 100ms) */
  /packages/apps/Mms/res/values-ca/
strings.xml 270 <string name="message_queued" msgid="7975945623873194737">"No es pot enviar el missatge en aquests moments. S\'enviarà quan el servei estigui disponible."</string>
322 <string name="too_many_unsent_mms" msgid="4436493698891224126">"En aquests moments no es pot enviar el missatge. Hi ha massa missatges multimèdia sense enviar."</string>
    [all...]
  /external/libusb/libusb/
io.c 595 * What's more, libusb may also need to handle events at specific moments in
598 * moments occurs (through calling libusb_get_next_timeout()), and then it
600 * these moments occur. This means that you need to adjust your
632 * specific moments is a bit of a headache. For maximum compatibility, you do
    [all...]
  /external/quake/quake/src/WinQuake/
gl_screen.cpp 140 for a few moments
screen.cpp 87 for a few moments
  /external/v8/src/
serialize.h 255 // If the deserializer does not find these at the expected moments then it
  /frameworks/base/core/tests/coretests/src/android/net/
NetworkStatsHistoryTest.java 265 // try removing just moments into first bucket; should be no change
  /gdk/samples/quake/jni/
gl_screen.cpp 140 for a few moments
  /external/quake/quake/src/QW/client/
gl_screen.c 143 for a few moments
screen.c 141 for a few moments
  /frameworks/base/docs/html/distribute/googleplay/publish/
preparing.jd 478 <p>When you think you are ready to publish, sign in to the Developer Console and take a few moments for a few
  /frameworks/base/docs/html/guide/components/
bound-services.jd 608 matching bring-up and tear-down moments of the client's lifecycle. For example:
  /external/valgrind/main/coregrind/
m_signals.c 103 (2) at convenient moments for us (that is, when the VCPU stops, and
113 them only at convenient moments, rather than having to recover from
132 (2) at convenient moments (when NOT running the vcpu), poll for async
    [all...]

Completed in 653 milliseconds

1 2