struct CvSize

#include <types_c.h>

struct CvSize
{
    // fields

    int height;
    int width;

    // construction

    CvSize(
        int w = 0,
        int h = 0
        );

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

    // methods

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