OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Vec3
(Results
1 - 2
of
2
) sorted by null
/cts/apps/CtsVerifier/include/colorchecker/
vec3.h
25
class
Vec3
{
27
Vec3
(T inputRed, T inputGreen, T inputBlue) {
33
Vec3
() {}
36
inline
Vec3
<T> operator+ (const
Vec3
<U> ¶m) const {
37
Vec3
<T> temp(mRed + param.r(), mGreen + param.g(), mBlue + param.b());
41
inline
Vec3
<T> operator- (const
Vec3
<T> ¶m) const {
42
Vec3
<T> temp(mRed - param.r(), mGreen - param.g(), mBlue - param.b());
46
inline
Vec3
<T> operator* (const int param) const
[
all
...]
/external/ceres-solver/examples/
libmv_bundle_adjuster.cc
117
typedef Eigen::Vector3d
Vec3
;
140
Vec3
t;
151
Vec3
X;
343
Vec3
*vector) {
Completed in 51 milliseconds