OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:minsad
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_BlockMatch_Half.c
78
OMX_INT
minSAD
, fromX, toX, fromY, toY;
105
/* Set the
minSad
as reference SAD */
106
minSAD
= refSAD;
169
if (armVCM4P2_CompareMV (x, y, candSAD, halfPelX, halfPelY,
minSAD
))
172
minSAD
= candSAD;
armVCM4P2_BlockMatch_Integer.c
86
OMX_INT
minSAD
= 0x10001, fromX, toX, fromY, toY;
152
if (armVCM4P2_CompareMV (x, y, candSAD, pDstMV->dx/2, pDstMV->dy/2,
minSAD
))
155
minSAD
= candSAD;
/external/opencv/cv/src/
cvstereobm.cpp
304
int
minsad
= INT_MAX, mind = -1;
local
342
minsad
= sad[mind];
352
int thresh =
minsad
+ (
minsad
* uniquenessRatio/100);
500
int
minsad
= INT_MAX, mind = -1;
local
508
if( currsad <
minsad
)
510
minsad
= currsad;
523
int thresh =
minsad
+ (
minsad
* uniquenessRatio/100);
Completed in 130 milliseconds