Searched defs:Vec3 (Results 1 - 10 of 10) sorted by relevance

/external/deqp/framework/common/
H A DtcuVectorType.hpp40 typedef Vector<float, 3> Vec3; typedef in namespace:tcu
/external/ceres-solver/examples/
H A Dlibmv_homography.cc73 typedef Eigen::Vector3d Vec3; typedef
115 typedef Eigen::Matrix<T, 3, 1> Vec3; typedef
116 Vec3 x(x1(0), x1(1), T(1.0));
117 Vec3 y(x2(0), x2(1), T(1.0));
119 Vec3 H_x = H * x;
120 Vec3 Hinv_y = H.inverse() * y;
391 Vec3 homogenous_x1 = Vec3(x1(0, i), x1(1, i), 1.0);
392 Vec3 homogenous_x2 = homography_matrix * homogenous_x1;
H A Dlibmv_bundle_adjuster.cc117 typedef Eigen::Vector3d Vec3; typedef
140 Vec3 t;
151 Vec3 X;
343 Vec3 *vector) {
/external/opencv3/modules/core/include/opencv2/core/
H A Daffine.hpp67 typedef Vec<float_type, 3> Vec3; typedef in class:cv::Affine3
75 Affine3(const Mat3& R, const Vec3& t = Vec3::all(0));
78 Affine3(const Vec3& rvec, const Vec3& t = Vec3::all(0));
81 explicit Affine3(const Mat& data, const Vec3& t = Vec3::all(0));
93 void rotation(const Vec3& rvec);
99 void translation(const Vec3
[all...]
/external/opencv3/modules/python/test/
H A Dcamera_calibration.py19 class Vec3: class in inherits:
29 return "<Vec3 (%s,%s,%s)>" % tuple([repr(c) for c in self.v])
31 return Vec3(*[self.v[i] + other.v[i] for i in range(3)])
33 return Vec3(*[self.v[i] - other.v[i] for i in range(3)])
35 if isinstance(other, Vec3):
36 return Vec3(*[self.v[i] * other.v[i] for i in range(3)])
38 return Vec3(*[self.v[i] * other for i in range(3)])
50 return Vec3(ay * bz - by * az, az * bx - bz * ax, ax * by - bx * ay)
65 R = Vec3(1., 0., 0.)
66 U = Vec3(
[all...]
/external/deqp/modules/gles31/scripts/
H A Dgen-implicit-conversions.py29 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup namespace
237 "ivec3": [Vec3(x[0], x[1], x[2]) for x in IN_IVECTOR],
238 "uvec3": [Vec3(x[0], x[1], x[2]) for x in IN_UVECTOR],
243 "vec3": [Vec3(x[0], x[1], x[2]).toFloat() for x in IN_IVECTOR],
304 elif isinstance(a, Scalar) and isinstance(b, Vec3):
382 "vec3": Vec3(1.0, 2.0, 3.0),
614 return Vec3(out[0], out[1], out[2]).toFloat()
616 return Vec3(out[0], out[1], out[2]).toUint()
H A Dgenutil.py218 def toVec3(self): return Vec3(self.x, self.x, self.x)
297 elif isinstance(val, Vec3):
298 return Vec3(self.x * val.x, self.x * val.y, self.x * val.z)
309 elif isinstance(val, Vec3):
310 return Vec3(self.x / val.x, self.x / val.y, self.x / val.z)
348 elif (len(lst) == 3): return Vec3(lst[0], lst[1], lst[2])
387 def toVec3(self): return Vec3(self.x, self.y, 0.0)
485 class Vec3(Vec): class in inherits:Vec
492 def applyUnary(self, func): return Vec3(func(self.x), func(self.y), func(self.z))
493 def applyBinary(self, func, other): return Vec3(fun
[all...]
/external/opencv3/3rdparty/openexr/Imath/
H A DImathVec.h62 template <class T> class Vec3;
163 // Vec3 (this->x, this->y, 0) % Vec3 (v.x, v.y, 0)
254 // could be either a Vec2<T>, a Vec3<T>, or a Vec4<T> you can
266 template <class T> class Vec3 class in namespace:Imath
284 Vec3 (); // no initialization
285 explicit Vec3 (T a); // (a a a)
286 Vec3 (T a, T b, T c); // (a b c)
293 Vec3 (const Vec3
1288 Vec3<T>::Vec3 () function in class:Imath::Vec3
1295 Vec3<T>::Vec3 (T a) function in class:Imath::Vec3
1302 Vec3<T>::Vec3 (T a, T b, T c) function in class:Imath::Vec3
1311 Vec3<T>::Vec3 (const Vec3 &v) function in class:Imath::Vec3
1321 Vec3<T>::Vec3 (const Vec3<S> &v) function in class:Imath::Vec3
1341 Vec3<T>::Vec3 (const Vec4<S> &v) function in class:Imath::Vec3
1350 Vec3<T>::Vec3 (const Vec4<S> &v, InfException) function in class:Imath::Vec3
[all...]
/external/deqp/modules/gles2/scripts/
H A Dgenutil.py205 def toVec3(self): return Vec3(self.x, self.x, self.x)
263 elif isinstance(val, Vec3):
264 return Vec3(self.x * val.x, self.x * val.y, self.x * val.z)
275 elif isinstance(val, Vec3):
276 return Vec3(self.x / val.x, self.x / val.y, self.x / val.z)
288 elif (len(lst) == 3): return Vec3(lst[0], lst[1], lst[2])
321 def toVec3(self): return Vec3(self.x, self.y, 0.0)
394 class Vec3(Vec): class in inherits:Vec
401 def applyUnary(self, func): return Vec3(func(self.x), func(self.y), func(self.z))
402 def applyBinary(self, func, other): return Vec3(fun
[all...]
/external/deqp/modules/gles3/scripts/
H A Dgenutil.py218 def toVec3(self): return Vec3(self.x, self.x, self.x)
295 elif isinstance(val, Vec3):
296 return Vec3(self.x * val.x, self.x * val.y, self.x * val.z)
307 elif isinstance(val, Vec3):
308 return Vec3(self.x / val.x, self.x / val.y, self.x / val.z)
346 elif (len(lst) == 3): return Vec3(lst[0], lst[1], lst[2])
385 def toVec3(self): return Vec3(self.x, self.y, 0.0)
483 class Vec3(Vec): class in inherits:Vec
490 def applyUnary(self, func): return Vec3(func(self.x), func(self.y), func(self.z))
491 def applyBinary(self, func, other): return Vec3(fun
[all...]

Completed in 321 milliseconds