3.3.2.10. Struct Size

3.3.2.10.1. Struct Documentation

struct Size

Data class that represents the size of an image.

Public Functions

Size()
Size(int row, int col)
Size(const std::array<int, 2> &size)
~Size()
Size(const Size&)
Size &operator=(const Size&)
Size(Size&&)
Size &operator=(Size&&)
bool operator<(const Size &rhs) const
bool operator==(const Size &rhs) const
Size operator*(int scale) const
Size operator*(double scale) const
Size &operator*=(int scale)
int CellCount() const

Public Members

int row = {0}
int col = {0}