OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Point_
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/core/include/opencv2/core/
types.hpp
110
////////////////////////////////
Point_
////////////////////////////////
135
typedef
Point_
<int> Point2i;
137
typedef
Point_
<float> Point2f;
138
typedef
Point_
<double> Point2d;
147
template<typename _Tp> class
Point_
153
Point_
();
154
Point_
(_Tp _x, _Tp _y);
155
Point_
(const
Point_
& pt);
156
Point_
(const Size_<_Tp>& sz)
[
all
...]
types_c.h
874
CvPoint(const cv::
Point_
<_Tp>& pt): x((int)pt.x), y((int)pt.y) {}
876
operator cv::
Point_
<_Tp>() const { return cv::
Point_
<_Tp>(cv::saturate_cast<_Tp>(x), cv::saturate_cast<_Tp>(y)); }
901
CvPoint2D32f(const cv::
Point_
<_Tp>& pt): x((float)pt.x), y((float)pt.y) {}
903
operator cv::
Point_
<_Tp>() const { return cv::
Point_
<_Tp>(cv::saturate_cast<_Tp>(x), cv::saturate_cast<_Tp>(y)); }
[
all
...]
Completed in 144 milliseconds