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

  /external/opencv3/modules/core/include/opencv2/core/
types.hpp 156 Point_(const Size_<_Tp>& sz);
269 //////////////////////////////// Size_ ////////////////////////////////
277 OpenCV defines the following Size_\<\> aliases:
279 typedef Size_<int> Size2i;
281 typedef Size_<float> Size2f;
284 template<typename _Tp> class Size_
290 Size_();
291 Size_(_Tp _width, _Tp _height);
292 Size_(const Size_& sz)
    [all...]
types_c.h 1015 CvSize(const cv::Size_<_Tp>& sz): width(cv::saturate_cast<int>(sz.width)), height(cv::saturate_cast<int>(sz.height)) {}
1017 operator cv::Size_<_Tp>() const { return cv::Size_<_Tp>(cv::saturate_cast<_Tp>(width), cv::saturate_cast<_Tp>(height)); }
1041 CvSize2D32f(const cv::Size_<_Tp>& sz): width(cv::saturate_cast<float>(sz.width)), height(cv::saturate_cast<float>(sz.height)) {}
1043 operator cv::Size_<_Tp>() const { return cv::Size_<_Tp>(cv::saturate_cast<_Tp>(width), cv::saturate_cast<_Tp>(height)); }
    [all...]

Completed in 100 milliseconds