OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:minX1
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/calib3d/src/
stereosgbm.cpp
128
int
minX1
= std::max(-maxD, 0), maxX1 = width + std::min(minD, 0);
129
int minX2 = std::max(
minX1
- maxD, 0), maxX2 = std::min(maxX1 - minD, width);
130
int D = maxD - minD, width1 = maxX1 -
minX1
, width2 = maxX2 - minX2;
181
cost -=
minX1
*D + minD; // simplify the cost indices inside the loop
206
for( x =
minX1
; x < maxX1; x++ )
256
for( x =
minX1
; x < maxX1; x++ )
343
int
minX1
= std::max(-maxD, 0), maxX1 = width + std::min(minD, 0);
344
int D = maxD - minD, width1 = maxX1 -
minX1
;
355
if(
minX1
>= maxX1 )
[
all
...]
/external/replicaisland/src/com/replica/replicaisland/
GameObjectCollisionSystem.java
333
final float
minX1
= object1.object.getPosition().x
344
final float delta =
minX1
- minX2;
Completed in 96 milliseconds