OpenCV  4.10.0
Open Source Computer Vision
Loading...
Searching...
No Matches
cv::Size_< _Tp > Class Template Reference

Template class for specifying the size of an image or rectangle. More...

#include <opencv2/core/types.hpp>

Public Types

typedef _Tp value_type

Public Member Functions

 Size_ ()
 default constructor
 Size_ (_Tp _width, _Tp _height)
 Size_ (const Point_< _Tp > &pt)
 Size_ (const Size_ &sz)=default
 Size_ (Size_ &&sz) CV_NOEXCEPT=default
_Tp area () const
 the area (width*height)
double aspectRatio () const
 aspect ratio (width/height)
bool empty () const
 true if empty
template<typename _Tp2>
 operator Size_< _Tp2 > () const
 conversion of another data type.
Size_operator= (const Size_ &sz)=default
Size_operator= (Size_ &&sz) CV_NOEXCEPT=default

Public Attributes

_Tp height
 the height
_Tp width
 the width

Detailed Description

template<typename _Tp>
class cv::Size_< _Tp >

Template class for specifying the size of an image or rectangle.

The class includes two members called width and height. The structure can be converted to and from the old OpenCV structures CvSize and CvSize2D32f . The same set of arithmetic and comparison operations as for Point_ is available.

OpenCV defines the following Size_<> aliases:

typedef Size2i Size;
Size_()
default constructor
Size2i Size
Definition types.hpp:370
Size_< int > Size2i
Definition types.hpp:366
Size_< float > Size2f
Definition types.hpp:368

Member Typedef Documentation

◆ value_type

template<typename _Tp>
typedef _Tp cv::Size_< _Tp >::value_type

Constructor & Destructor Documentation

◆ Size_() [1/5]

template<typename _Tp>
cv::Size_< _Tp >::Size_ ( )

default constructor

◆ Size_() [2/5]

template<typename _Tp>
cv::Size_< _Tp >::Size_ ( _Tp _width,
_Tp _height )

◆ Size_() [3/5]

template<typename _Tp>
cv::Size_< _Tp >::Size_ ( const Size_< _Tp > & sz)
default

◆ Size_() [4/5]

template<typename _Tp>
cv::Size_< _Tp >::Size_ ( Size_< _Tp > && sz)
default

◆ Size_() [5/5]

template<typename _Tp>
cv::Size_< _Tp >::Size_ ( const Point_< _Tp > & pt)

Member Function Documentation

◆ area()

template<typename _Tp>
_Tp cv::Size_< _Tp >::area ( ) const

the area (width*height)

◆ aspectRatio()

template<typename _Tp>
double cv::Size_< _Tp >::aspectRatio ( ) const

aspect ratio (width/height)

◆ empty()

template<typename _Tp>
bool cv::Size_< _Tp >::empty ( ) const

true if empty

◆ operator Size_< _Tp2 >()

template<typename _Tp>
template<typename _Tp2>
cv::Size_< _Tp >::operator Size_< _Tp2 > ( ) const

conversion of another data type.

◆ operator=() [1/2]

template<typename _Tp>
Size_ & cv::Size_< _Tp >::operator= ( const Size_< _Tp > & sz)
default

◆ operator=() [2/2]

template<typename _Tp>
Size_ & cv::Size_< _Tp >::operator= ( Size_< _Tp > && sz)
default

Member Data Documentation

◆ height

template<typename _Tp>
_Tp cv::Size_< _Tp >::height

the height

◆ width

template<typename _Tp>
_Tp cv::Size_< _Tp >::width

the width


The documentation for this class was generated from the following file: