opencv第三章习题2

下面这个练习是帮助掌握矩阵类型。创造一个三通道二维矩阵,字节类型,大小为100× 100,并设置所有数值为 0。  a.   在矩阵中使用 void  cvCircle(CvArr*  img, CvPoint  center,  intradius, CvScalar  color, int thickness=1,  i nt  line_type=8, int  shift=0)画一个圆。  b.   使用第 2 章所学的方法来显示这幅图像。


ide:vc6.0

代码:

// opencv_3_2.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "highgui.h"
#include "cv.h"

int main(int argc, char* argv[])
{
CvMat* mat = cvCreateMat(100,100,CV_8UC3);
CvPoint center = {50,50};
int radius = 50;
CvScalar color = {{100,100,100,100}};
const int thickness = 1;
const int line_type = 8;
const int shift = 0;

cvZero(mat);
cvCircle( mat, center, radius, color,
              thickness, line_type, shift );
cvNamedWindow( "example", CV_WINDOW_AUTOSIZE );
cvShowImage( "example", mat );
cvWaitKey(0);
cvReleaseMat(&mat);
cvDestroyWindow("example");
return 0;
}

结果:

参考:

www.opencv.org.cn

《学习opencv中文版》

·····


你可能感兴趣的:(ide)