1. Mat(int rows, int cols, int type);
    2. Mat(Size size, int type);
    3. Mat(int rows, int cols, int type, const Scalar& s);
    4. Mat(int rows, int cols, int type, void* data, size_t step=AUTO_STEP);
    5. void create(int rows, int cols, int type);
    6. Mat reshape(int cn, int rows=0) const;
    7. template<typename _Tp, int n> explicit Mat(const Vec<_Tp, n>& vec, bool copyData=true);