Home
last modified time | relevance | path

Searched defs:Size2D (Results 1 – 1 of 1) sorted by relevance

/device/board/isoftstone/yangfan/common/seetafaceengine/opencv2/3rdparty/carotene/include/carotene/
Dtypes.hpp97 struct Size2D { struct
98 Size2D() : width(0), height(0) {} in Size2D() argument
99 Size2D(size_t width_, size_t height_) : width(width_), height(height_) {} in Size2D() function
101 size_t width;
102 size_t height;
104 inline size_t total() const in total()