您的位置:首页 > 编程语言 > C#

C# + WinForm + EmguCV 学习一:初步显示图像;

2016-05-10 15:50 513 查看
本文参考文档:http://download.csdn.net/detail/shawncheer/9515600

第一个第一个程序是显示图片,注意这里用的是WinForm而不是WPF、,请注意。

代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

using Emgu.CV;
using Emgu.CV.CvEnum;
using Emgu.CV.Structure;

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

String winname = "First Window";
private void button1_Click(object sender, EventArgs e)
{
CvInvoke.cvNamedWindow(winname);
using (Image<Bgr, Byte> img1 = new Image<Bgr, byte>(480, 200,
new Bgr(0, 255, 255)))
{
MCvFont font = new MCvFont(
Emgu.CV.CvEnum.FONT.CV_FONT_HERSHEY_COMPLEX,
1.0, 1.0);
img1.Draw("Hello world!", ref font, new System.Drawing.Point(25, 100),
new Bgr(255, 0, 0));

CvInvoke.cvShowImage(winname, img1.Ptr);
CvInvoke.cvWaitKey(0);
CvInvoke.cvDestroyWindow(winname);

}
}
}
}


在界面里添加一个按钮;



最后运行结果如下:



第一程序完成了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: