OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:meanRatio
(Results
1 - 2
of
2
) sorted by null
/cts/apps/CtsVerifier/lib/colorchecker/
autolocktest.cpp
57
float
meanRatio
= 0.f;
66
meanRatio
+= luminance1 / luminance2;
70
meanRatio
=
meanRatio
/ meanNumCount;
72
return (
meanRatio
> 1 + kEqThreshold);
80
float
meanRatio
= 0.f;
89
meanRatio
+= luminance2 / luminance1;
93
meanRatio
=
meanRatio
/ meanNumCount;
95
return ((
meanRatio
>= 1 - kEqThreshold) && (meanRatio <= 1 + kEqThreshold))
[
all
...]
meteringtest.cpp
62
float
meanRatio
= 0.f;
72
meanRatio
+= luminance2 / luminance1;
76
meanRatio
=
meanRatio
/ meanNumCount;
78
return (
meanRatio
> 1 + kEqThreshold);
86
float
meanRatio
= 0.f;
95
meanRatio
+= luminance2 / luminance1;
99
meanRatio
=
meanRatio
/ meanNumCount;
101
return ((
meanRatio
>= 1 - kEqThreshold) && (meanRatio <= 1 + kEqThreshold))
[
all
...]
Completed in 1312 milliseconds