// TestPoly.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
#include
#include
#pragma comment(lib,"cv.lib")
#pragma comment(lib,"cvcam.lib")
#pragma comment(lib,"cxcore.lib")
#pragma comment(lib,"highgui.lib")
#define nMatWidth 400
#define nMatHeight 400
int main(int argc, char* argv[])
{
CvMat *Mat = cvCreateMat(nMatWidth,nMatHeight,CV_8UC3);
assert(Mat != NULL);
【cvFillConvexPoly()函数使用】 CvPoint Points[5] = { {12,45}, {78,150}, {240,240}, {132,132}, {200,230} };
cvFillConvexPoly(Mat,Points,5,CV_RGB(255,255,255));
cvNamedWindow("Show_Result");
cvShowImage("Show_Result",Mat);
cvWaitKey();
cvReleaseMat(&Mat);
cvDestroyWindow("Show_Result");
return 0;
}
推荐阅读
- 技术学习|Tomcat 内存泄露问题
- C|大端模式 小端模式
- C|C语言指针5分钟教程
- constructor|自己用---关于进度条倒计时问题。
- linux网络编程|linux名称解析函数简介——gethostbyname与getaddrinfo
- 软件编程|getopt的使用
- C语言|select()函数以及FD_ZERO、FD_SET、FD_CLR、FD_ISSET
- c#用法技巧|c# winform 通过编程取消事件(event)的注册
- C语言|va_list
- QGIS|QGIS中的金字塔机制优化