OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pointUpperLeft
(Results
1 - 2
of
2
) sorted by null
/cts/apps/CtsVerifier/lib/colorchecker/
colorcheckertest.cpp
476
Vec2f
pointUpperLeft
;
486
pointUpperLeft
= findCrossing(verticalLines[i], horizontalLines[j]);
493
if (verifyPointPair(
pointUpperLeft
, pointBottomRight,
537
bool ColorCheckerTest::verifyPointPair(Vec2f
pointUpperLeft
,
544
if ((
pointUpperLeft
.x() < 0) ||
545
(
pointUpperLeft
.x() >= mImage->getHeight()) ||
546
(
pointUpperLeft
.y() < 0) ||
547
(
pointUpperLeft
.y() >= mImage->getWidth()) ||
552
(abs(
pointUpperLeft
.x() - pointBottomRight.x()) <= 5) ||
553
(abs(
pointUpperLeft
.y() - pointBottomRight.y()) <= 5) |
[
all
...]
/cts/apps/CtsVerifier/include/colorchecker/
colorcheckertest.h
85
bool verifyPointPair(Vec2f
pointUpperLeft
, Vec2f pointBottomRight,
Completed in 98 milliseconds