如何将Mat矩阵行提取到新矩阵中

时间:2019-05-05 15:02:31

标签: opencv

假设一个Mat img(512,512,CV_32F),那么如何将img中一个特定的行(例如第10行)放入另一个具有相同类型的mat(例如img_r10)中?有相关功能吗?

1 个答案:

答案 0 :(得分:0)

使用cv::Mat(此处为cv::Mat::row)的块访问方法(Learn Opencv 3 https://www.oreilly.com/library/view/learning-opencv-3/9781491937983/ch04.html中的表4-7)。

在这里可以找到类似的帖子:Copy select rows into new matrixhttps://answers.opencv.org/question/2139/extract-specified-row-from-cvmat/