HomeSort by relevance Sort by last modified time
    Searched defs:Line3 (Results 1 - 3 of 3) sorted by null

  /external/opencv3/3rdparty/openexr/Imath/
ImathLine.h 54 class Line3
65 Line3() {}
66 Line3(const Vec3<T>& point1, const Vec3<T>& point2);
86 T distanceTo(const Line3<T>& line) const;
88 Vec3<T> closestPointTo(const Line3<T>& line) const;
96 typedef Line3<float> Line3f;
97 typedef Line3<double> Line3d;
105 inline Line3<T>::Line3(const Vec3<T> &p0, const Vec3<T> &p1)
111 inline void Line3<T>::set(const Vec3<T> &p0, const Vec3<T> &p1
    [all...]
  /external/opencv/cv/src/
cvoptflowhs.cpp 128 int Line3;
246 Line3 = Line2 + ((Line2 == LastLine) ? 0 : imgStep);
249 ConvX = CONV( imgA[Line1 + 1], imgA[Line2 + 1], imgA[Line3 + 1] );
250 ConvY = CONV( imgA[Line3], imgA[Line3], imgA[Line3 + 1] );
272 ConvX = CONV( imgA[Line1 + j + 1], imgA[Line2 + j + 1], imgA[Line3 + j + 1] );
273 ConvY = CONV( imgA[Line3 + j - 1], imgA[Line3 + j], imgA[Line3 + j + 1] )
    [all...]
cvoptflowlk.cpp 134 int Line3;
302 Line3 = L3 * imgStep;
305 ConvX = CONV( imgA[Line1 + 1], imgA[Line2 + 1], imgA[Line3 + 1] );
306 ConvY = CONV( imgA[Line3], imgA[Line3], imgA[Line3 + 1] );
325 ConvX = CONV( imgA[Line1 + j + 1], imgA[Line2 + j + 1], imgA[Line3 + j + 1] );
326 ConvY = CONV( imgA[Line3 + j - 1], imgA[Line3 + j], imgA[Line3 + j + 1] )
    [all...]

Completed in 71 milliseconds