码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-09-30 21:53:33      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:mat   extract   ace   div   open   nbsp   rac   img   return   

#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_选取图像局部区域

标签:mat   extract   ace   div   open   nbsp   rac   img   return   

原文地址:http://www.cnblogs.com/yunfung/p/7616141.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!