Home
last modified time | relevance | path

Searched refs:_ellipse (Results 1 – 1 of 1) sorted by relevance

/external/opencv3/modules/features2d/src/
Devaluation.cpp117 EllipticKeyPoint( const Point2f& _center, const Scalar& _ellipse );
122 static Mat_<double> getSecondMomentsMatrix( const Scalar& _ellipse );
139 EllipticKeyPoint::EllipticKeyPoint( const Point2f& _center, const Scalar& _ellipse ) in EllipticKeyPoint() argument
142 ellipse = _ellipse; in EllipticKeyPoint()
155 Mat_<double> EllipticKeyPoint::getSecondMomentsMatrix( const Scalar& _ellipse ) in getSecondMomentsMatrix() argument
158 M(0,0) = _ellipse[0]; in getSecondMomentsMatrix()
159 M(1,0) = M(0,1) = _ellipse[1]; in getSecondMomentsMatrix()
160 M(1,1) = _ellipse[2]; in getSecondMomentsMatrix()