opencv探索01-Mat结构

时间:2025-03-27 06:59:48
/** * 矩阵加法有以下两种方式 * 矩阵+矩阵 * 矩阵+标量 */ CV_EXPORTS MatExpr operator + (const Mat& a, const Mat& b); CV_EXPORTS MatExpr operator + (const Mat& a, const Scalar& s); CV_EXPORTS MatExpr operator + (const Scalar& s, const Mat& a); CV_EXPORTS MatExpr operator + (const MatExpr& e, const Mat& m); CV_EXPORTS MatExpr operator + (const Mat& m, const MatExpr& e); CV_EXPORTS MatExpr operator + (const MatExpr& e, const Scalar& s); CV_EXPORTS MatExpr operator + (const Scalar& s, const MatExpr& e); CV_EXPORTS MatExpr operator + (const MatExpr& e1, const MatExpr& e2); /** * 矩阵减法有以下两种方式 * 矩阵-矩阵 * 矩阵-标量 */ CV_EXPORTS MatExpr operator - (const Mat& a, const Mat& b); CV_EXPORTS MatExpr operator - (const Mat& a, const Scalar& s); CV_EXPORTS MatExpr operator - (const Scalar& s, const Mat& a); CV_EXPORTS MatExpr operator - (const MatExpr& e, const Mat& m); CV_EXPORTS MatExpr operator - (const Mat& m, const MatExpr& e); CV_EXPORTS MatExpr operator - (const MatExpr& e, const Scalar& s); CV_EXPORTS MatExpr operator - (const Scalar& s, const MatExpr& e); CV_EXPORTS MatExpr operator - (const MatExpr& e1, const MatExpr& e2); /** * 矩阵乘法有以下两种方式 * 矩阵*矩阵 * 矩阵*double */ CV_EXPORTS MatExpr operator * (const Mat& a, const Mat& b); CV_EXPORTS MatExpr operator * (const Mat& a, double s); CV_EXPORTS MatExpr operator * (double s, const Mat& a); CV_EXPORTS MatExpr operator * (const MatExpr& e, const Mat& m); CV_EXPORTS MatExpr operator * (const Mat& m, const MatExpr& e); CV_EXPORTS MatExpr operator * (const MatExpr& e, double s); CV_EXPORTS MatExpr operator * (double s, const MatExpr& e); CV_EXPORTS MatExpr operator * (const MatExpr& e1, const MatExpr& e2); /** * 矩阵除法有以下两种方式 * 矩阵/矩阵 * 矩阵/double */ CV_EXPORTS MatExpr operator / (const Mat& a, const Mat& b); CV_EXPORTS MatExpr operator / (const Mat& a, double s); CV_EXPORTS MatExpr operator / (double s, const Mat& a); CV_EXPORTS MatExpr operator / (const MatExpr& e, const Mat& m); CV_EXPORTS MatExpr operator / (const Mat& m, const MatExpr& e); CV_EXPORTS MatExpr operator / (const MatExpr& e, double s); CV_EXPORTS MatExpr operator / (double s, const MatExpr& e); CV_EXPORTS MatExpr operator / (const MatExpr& e1, const MatExpr& e2); //矩阵倒置,第i行变成第i列,Mi,j => Mj,i MatExpr t() const; //逆矩阵,AB=E => B=E/A MatExpr inv(int method=DECOMP_LU) const; //矩阵点乘,返回标量,几何意义是B在A上的投影,可以用来判断方向 double dot(InputArray m) const; //矩阵叉乘,返回向量,几何意义是垂直于A,B向量的法向量。 Mat cross(InputArray m) const;