HomeSort by relevance Sort by last modified time
    Searched full:moments (Results 1 - 25 of 32) 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/collada/include/1.4/dom/
domRigid_body.h 151 * store the diagonal elements (moments of inertia).
564 * store the diagonal elements (moments of inertia). @see domMass_frame
568 * float3 ? The diagonal elements of the inertia tensor (moments of inertia),
  /external/qemu/hw/
bt-hci-csr.c 367 /* Moments later... (but shorter than 100ms) */
  /external/v8/src/
serialize.h 226 // If the deserializer does not find these at the expected moments then it
  /frameworks/base/docs/html/guide/tutorials/views/
hello-mapview.jd 114 touches the map, then disappear after a few moments of inactivity.</p></li>
  /packages/apps/Mms/res/values-ca/
strings.xml 267 <string name="message_queued" msgid="7975945623873194737">"No es pot enviar el missatge en aquests moments. S\'enviarà quan el servei estigui disponible."</string>
319 <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>
  /external/quake/quake/src/WinQuake/
gl_screen.cpp 140 for a few moments
screen.cpp 87 for a few moments
  /frameworks/base/core/tests/coretests/src/android/net/
NetworkStatsHistoryTest.java 267 // try removing just moments into first bucket; should be no change
  /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/guide/topics/fundamentals/
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...]
  /system/vold/
cryptfs.c 711 /* Give it a few moments to get started */
    [all...]

Completed in 1631 milliseconds

1 2