2012-02-28 157 views

回答

7

您可以使用Mat::col(int j)方法來獲取第一列

Mat m; 
    Mat col1 = m.col(0) 

或者,你可以使用Mat::colRange(int startCol, int endCol)獲得原始矩陣無第一列:

Mat noCol1 = m.colRange(1, m.cols) 

請記住,實際的數據不會被複制,它與原始矩陣共享。要獲得該值的副本,您可以使用Mat::clone()

更多信息:Opencv 2.3 docmentation