struct CvPoint2D32f

#include <types_c.h>

struct CvPoint2D32f
{
    // fields

    float x;
    float y;

    // construction

    CvPoint2D32f(
        float _x = 0,
        float _y = 0
        );

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

    // methods

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