OPENCV学习笔记1-8_选取图像局部区域

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OPENCV学习笔记1-8_选取图像局部区域相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include "opencv2/opencv.hpp"
#include <stdio.h>
using namespace std;
using namespace cv;
int main( int argc, char* argv[] )
{
    Mat A = Mat::eye(6, 6, CV_32S);
    Mat B = A.row(2);               //get second row
    Mat C = 3*A.col(2);
    // extracts A columns, 1 (inclusive) to 3 (exclusive).
    Mat D= A(Range(1, 3), Range::all());

    cout<<"yunfung test:"<<endl<<endl;
    cout<<"A"<< A<<endl<<endl;
    cout<<"B"<< B<<endl<<endl;
    cout<<"C"<< C<<endl<<endl;
    cout<<"D"<< D<<endl<<endl;

    return(0);
}

 技术分享

 

以上是关于OPENCV学习笔记1-8_选取图像局部区域的主要内容,如果未能解决你的问题,请参考以下文章

OpenCV入门教程-Mat类之选取图像局部区域

opencv学习笔记SVM+HOG

OpenCV-C++选择提取感兴趣区域(ROI区域)附用鼠标选取ROI区域的代码

opencv学习笔记访问图像中像素的三种方式ROI区域图像叠加和图像混合

OpenCV学习笔记之课后习题练习3-5

Opencv2系列学习笔记10(提取连通区域轮廓) 另一个