Mat::Mat(int rows, int cols, int type)
// 创建一个二维矩阵,行数为rows,列数为cols,矩阵的每个元素类型为type。
// type可选的参数值有 CV_8UC1,CV_64FC4等,分别表示8 bits unsigned char 的单通道类型,64 bits float 的4通道类型,还可以是CV_8UC(n),此类型表示元素为n通道类型,n的最大值为CV_MAX_CN。
Mat::Mat(int ndims, const int* sizes, int type)
// 创建一个ndims维矩阵,每一维的元素数目由整型数组sizes决定,矩阵的每个元素类型为type。
Mat::operator MatExpr_<Mat, Mat>() const
// 矩阵表达式的计算算子,算子MatExpr_不在此指定,可以为下列算子中的任意一个:
// 矩阵乘法:A*B
// ...
Mat Mat::row(int i) const
// 返回矩阵的第i行,行数从0开始。
Mat Mat::col(int i) const
// 返回矩阵的第i列,列数从0开始。
Mat Mat::rowRange(int startrow, int endrow) const
// 返回矩阵从第startrow行开始,第endrow行前一行为止的子矩阵