1. 程式人生 > >opencv使用筆記——Mat初始化

opencv使用筆記——Mat初始化

目錄

1.呼叫建構函式

2.使用zeros,ones, eye(對角矩陣)

3.使用陣列或指標初始化

4.自定義


1.呼叫建構函式


Mat M(7,7,CV_32FC2,Scalar(1,3));

2.使用zeros,ones, eye(對角矩陣)

Mat m = Mat::zeros(size, type);

3.使用陣列或指標初始化

Mat (int rows, int cols, int type, void *data, size_t step=AUTO_STEP)

Mat (Size size, int type, void *data, size_t step=AUTO_STEP)

example:
int a[2][3] = { 1, 2, 3, 4, 5, 6};
Mat m1(2,3,CV_32S,a);   //float 對應的是CV_32F,double對應的是CV_64F
cout << m1 << endl;

4.自定義

Mat array = (Mat_<double>(3, 3) << 0, -1, 5, -1, 5, -1, 0, -1, 0);