OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:moments
(Results
1 - 2
of
2
) sorted by null
/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 ));
Completed in 90 milliseconds