假设一个Mat img(512,512,CV_32F)
,那么如何将img
中一个特定的行(例如第10行)放入另一个具有相同类型的mat(例如img_r10)中?有相关功能吗?
答案 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 matrix和https://answers.opencv.org/question/2139/extract-specified-row-from-cvmat/