Why does OpenCV not define the alias Size2d?

asked Jan 2 '15

enzom83 gravatar image

For convenience, the following type aliases are defined in OpenCV:

typedef Point_<int> Point2i;
typedef Point2i Point;
typedef Point_<float> Point2f;
typedef Point_<double> Point2d;
typedef Size_<int> Size2i;
typedef Size2i Size;
typedef Size_<float> Size2f;

Why does OpenCV not define the alias Size2d for Size_<double>?

Preview: (hide)