1. 程式人生 > >Opencv中的Mat型別常用函式資料

Opencv中的Mat型別常用函式資料

Type包括
CV_8U(0-255)8位無符號
CV_8S(-128-127)8位有符號
CV_16U(0-65535)16位無符號
CV_16S(-32768,32767)16位有符號
CV_32S 32位有符號
CV_32F 32位浮點型

 //! returns a new matrix header for the specified row
    Mat row(int y) const;

這裡是獲取某一行的資料

 //! returns a new matrix header for the specified row
    Mat col(int y) const
;

這裡是獲取某一列的資料

 //! ... for the specified row span
    Mat rowRange(int startrow, int endrow) const;

這個是獲取N行的資料,從start到end

 uchar* ptr(int i0=0);

這裡是獲取行指標

//! pointer to the data
uchar* data;
這裡是獲取資料的指標