http://blog.163.com/wangxh_jy/blog/static/28233883201001581640283/

关于详细的配置及程序运行截图,请下载:http://download.csdn.net/source/1127474名为《用Visual C#开发基于OpenCV的Windows应用程序》的文章。

由于百度允许的字数太少了,所以就不贴全部程序了。有需要源程序的话,请下载:http://download.csdn.net/source/1127477

下面是主要的程序:

?using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Text;

using System.Windows.Forms;

using Emgu.CV;

using Emgu.Util;

/*

*1、判断一个视频是否读到文件尾,不能用null,要用一个为空类型的IntPtr,就是IntPtr eof = new IntPtr(),看其是否与eof相等

*2、IplImage*,CvCapture*等指针在C#中都用IntPtr来代替,且其中没有cvGetMCvSize函数,故用cvGetImageROI来暂时代替

*3、由于C#中没有取地址符号&,所以在这里所有的取地址都用引用来代替,即ref

*4、OpenCV中的所有的预定义的常量,都封装在Emgu.CV.CvEnum这个枚举类型里面

*/

namespace OpenCV

{

public partial class mainForm : Form

{

IntPtr eof = new IntPtr();

public mainForm()

{

InitializeComponent();

}

private void btnOpen_Click(object sender, EventArgs e)

{

OpenFileDialog ofd = new OpenFileDialog();

ofd.DefaultExt = "*.bmp";

ofd.Filter="BMP files(*.bmp)|*.bmp|JPG files(*.jpg)|*.jpg|AVI files(*.avi)|*.avi";

if(ofd.ShowDialog()==DialogResult.OK)

{

tbxPath.Text = ofd.FileName;

}

else

{

tbxPath.Text = "";

}

}

private void btnOpenImage_Click(object sender, EventArgs e)

{

string path = tbxPath.Text;

if(path=="")

{

MessageBox.Show("Please select an image at first.","Information");

return;

}

else

{

string ext = path.Substring(path.Length - 3,3);

ext = ext.ToLower();

ext = ext.Trim();

if (ext.CompareTo("bmp") != 0 && ext.CompareTo("jpg")!=0)

{

MessageBox.Show("You must select an .bmp or .jpg file at first.", "Information");

return;

}

IntPtr img = CvInvoke.cvLoadImage(path,Emgu.CV.CvEnum.LOAD_IMAGE_TYPE.CV_LOAD_IMAGE_ANYCOLOR);

if(img==eof)

{

MessageBox.Show("Can not open the image.", "Information");

return;

}

CvInvoke.cvNamedWindow(path);

CvInvoke.cvShowImage(path, img);

CvInvoke.cvWaitKey(0);

CvInvoke.cvReleaseImage(ref img);

CvInvoke.cvDestroyWindow(path);

}

}

private void btnOpenAVI_Click(object sender, EventArgs e)

{

string path = tbxPath.Text;

if(path=="")

{

MessageBox.Show("Please select an AVI file at first.", "Information");

return;

}

string ext = path.Substring(path.Length - 3);

ext = ext.ToLower();

ext = ext.Trim();

if(ext.CompareTo("avi")!=0)

{

MessageBox.Show("You must select an AVI file at first.", "Information");

return;

}

IntPtr capture = CvInvoke.cvCreateFileCapture(path);

if(capture==eof)

{

MessageBox.Show("Can not create file capture.", "Information");

return;

}

IntPtr frame;

CvInvoke.cvNamedWindow(path);

double fps = CvInvoke.cvGetCaptureProperty(capture, Emgu.CV.CvEnum.CAP_PROP.CV_CAP_PROP_FPS);

while((frame= CvInvoke.cvQueryFrame(capture))!=eof)

{

CvInvoke.cvShowImage(path,frame);

int ch=CvInvoke.cvWaitKey(1000/(int)fps);

if(ch==13) break;

}

CvInvoke.cvReleaseCapture(ref capture);

CvInvoke.cvDestroyWindow(path);

}

private void btnOpenCamera_Click(object sender, EventArgs e)

{

IntPtr capture = CvInvoke.cvCreateCameraCapture(-1);

if(capture==eof)

{

MessageBox.Show("Can not create camera capture.", "Information");

return;

}

IntPtr frame;

CvInvoke.cvNamedWindow("Camera");

while((frame=CvInvoke.cvQueryFrame(capture))!=eof)

{

CvInvoke.cvShowImage("Camera", frame);

int ch = CvInvoke.cvWaitKey(10);

if (ch == 13) break;

}

CvInvoke.cvReleaseCapture(ref capture);

CvInvoke.cvDestroyWindow("Camera");

}

private void btnSaveImage_Click(object sender, EventArgs e)

{

string txt = tbxPath.Text;

string path;

if(txt=="")

{

MessageBox.Show("Please select an image at first.", "Information");

return;

}

IntPtr oldImg = CvInvoke.cvLoadImage(txt, Emgu.CV.CvEnum.LOAD_IMAGE_TYPE.CV_LOAD_IMAGE_ANYCOLOR);

if(oldImg==eof)

{

MessageBox.Show("can not load the image.", "Information");

return;

}

SaveFileDialog sfd = new SaveFileDialog();

sfd.Filter = "BMP files(*.bmp)|*.bmp|JPG files(*.jpg)|*.jpg";

sfd.DefaultExt = "*.bmp";

if(sfd.ShowDialog()==DialogResult.OK)

{

path = sfd.FileName;

}

else

{

CvInvoke.cvReleaseImage(ref oldImg);

return;

}

CvInvoke.cvSaveImage(path, oldImg);

CvInvoke.cvReleaseImage(ref oldImg);

MessageBox.Show("Saved As the image successfully.","Information");

}

private void btnRgbToGray_Click(object sender, EventArgs e)

{

string path = tbxPath.Text;

if (path == "")

{

MessageBox.Show("Please select an image at first.", "Information");

return;

}

string ext = path.Substring(path.Length - 3, 3);

ext = ext.ToLower();

ext = ext.Trim();

if (ext.CompareTo("bmp") != 0 && ext.CompareTo("jpg") != 0)

{

MessageBox.Show("You must select an .bmp or .jpg file at first.", "Information");

return;

}

IntPtr oldImg = CvInvoke.cvLoadImage(path, Emgu.CV.CvEnum.LOAD_IMAGE_TYPE.CV_LOAD_IMAGE_ANYCOLOR);

if(oldImg==eof)

{

MessageBox.Show("can not load the image:" + path, "Information");

return;

}

MCvRect cr = CvInvoke.cvGetImageROI(oldImg);

int width = cr.width;

int height = cr.height;

IntPtr grayImg = CvInvoke.cvCreateImage(new MCvSize(width,height), Emgu.CV.CvEnum.IPL_DEPTH.IPL_DEPTH_8U,1);

if(grayImg==eof)

{

MessageBox.Show("can not create an image in memory.", "Information");

return;

}

CvInvoke.cvCvtColor(oldImg, grayImg, Emgu.CV.CvEnum.COLOR_CONVERSION.CV_BGR2GRAY);

CvInvoke.cvNamedWindow("灰度图");

CvInvoke.cvShowImage("灰度图", grayImg);

CvInvoke.cvWaitKey(0);

CvInvoke.cvReleaseImage(ref oldImg);

CvInvoke.cvReleaseImage(ref grayImg);

CvInvoke.cvDestroyWindow("灰度图");

}

private void btnCannyImg_Click(object sender, EventArgs e)

{

string path = tbxPath.Text;

if (path == "")

{

MessageBox.Show("Please select an image at first.", "Information");

return;

}

string ext = path.Substring(path.Length - 3, 3);

ext = ext.ToLower();

ext = ext.Trim();

if (ext.CompareTo("bmp") != 0 && ext.CompareTo("jpg") != 0)

{

MessageBox.Show("You must select an .bmp or .jpg file at first.", "Information");

return;

}

IntPtr srcImg = CvInvoke.cvLoadImage(path, Emgu.CV.CvEnum.LOAD_IMAGE_TYPE.CV_LOAD_IMAGE_GRAYSCALE);

if(srcImg==eof)

{

MessageBox.Show("Can not load the image:" + path, "Information");

return;

}

MCvRect crect = CvInvoke.cvGetImageROI(srcImg);

IntPtr dstImg = CvInvoke.cvCreateImage(new MCvSize(crect.width, crect.height), Emgu.CV.CvEnum.IPL_DEPTH.IPL_DEPTH_8U, 1);

int sobel;

double thresh1, thresh2;

CannyWindow cw = new CannyWindow();

cw.ShowDialog();

sobel = cw.sobel;

thresh1 = cw.thresh1;

thresh2 = cw.thresh2;

if (thresh1 == 0 || thresh2 == 0 || sobel == 0) return;

CvInvoke.cvCanny(srcImg, dstImg, thresh1, thresh2, sobel);

CvInvoke.cvNamedWindow("Canny检测");

CvInvoke.cvShowImage("Canny检测", dstImg);

CvInvoke.cvWaitKey(0);

CvInvoke.cvReleaseImage(ref srcImg);

CvInvoke.cvReleaseImage(ref dstImg);

CvInvoke.cvDestroyWindow("Canny检测");

}

private void btnGrayVideo_Click(object sender, EventArgs e)

{

string path = tbxPath.Text;

if (path == "")

{

MessageBox.Show("Please select an AVI file at first.", "Information");

return;

}

string ext = path.Substring(path.Length - 3, 3);

ext = ext.ToLower();

ext = ext.Trim();

if (ext.CompareTo("avi") != 0)

{

MessageBox.Show("You must select an .avi file at first.", "Information");

return;

}

IntPtr capture = CvInvoke.cvCreateFileCapture(path);

if(capture==eof)

{

MessageBox.Show("can not create file capture:" + path, "Information");

return;

}

IntPtr frame=CvInvoke.cvQueryFrame(capture);

if(frame==eof)

{

MessageBox.Show("can not query frame from the capture.", "Information");

return;

}

MCvRect c = CvInvoke.cvGetImageROI(frame);

IntPtr gray = CvInvoke.cvCreateImage(new MCvSize(c.width, c.height), Emgu.CV.CvEnum.IPL_DEPTH.IPL_DEPTH_8U, 1);

CvInvoke.cvNamedWindow("灰度视频");

while((frame=CvInvoke.cvQueryFrame(capture))!=eof)

{

CvInvoke.cvCvtColor(frame, gray, Emgu.CV.CvEnum.COLOR_CONVERSION.CV_BGR2GRAY);

CvInvoke.cvFlip(gray, gray, 0);

CvInvoke.cvShowImage("灰度视频", gray);

int ch = CvInvoke.cvWaitKey(10);

if (ch == 13) break;

}

CvInvoke.cvReleaseCapture(ref capture);

CvInvoke.cvReleaseImage(ref gray);

CvInvoke.cvDestroyWindow("灰度视频");

}

private void btnGrayCamera_Click(object sender, EventArgs e)

{

IntPtr capture = CvInvoke.cvCreateCameraCapture(-1);

if(capture==eof)

{

MessageBox.Show("can not create camera capture.", "Information");

return;

}

IntPtr frame = CvInvoke.cvQueryFrame(capture);

if(frame==eof)

{

MessageBox.Show("can not query frame from capture.", "Information");

return;

}

MCvRect c = CvInvoke.cvGetImageROI(frame);

IntPtr gray = CvInvoke.cvCreateImage(new MCvSize(c.width, c.height), Emgu.CV.CvEnum.IPL_DEPTH.IPL_DEPTH_8U, 1);

CvInvoke.cvNamedWindow("灰度摄像头");

while ((frame = CvInvoke.cvQueryFrame(capture)) != eof)

{

CvInvoke.cvCvtColor(frame, gray, Emgu.CV.CvEnum.COLOR_CONVERSION.CV_BGR2GRAY);

CvInvoke.cvFlip(gray, gray, 0);

CvInvoke.cvShowImage("灰度摄像头", gray);

int ch = CvInvoke.cvWaitKey(10);

if (ch == 13) break;

}

CvInvoke.cvReleaseCapture(ref capture);

CvInvoke.cvReleaseImage(ref gray);

CvInvoke.cvDestroyWindow("灰度摄像头");

}

private void btnCannyVideo_Click(object sender, EventArgs e)

{

string path = tbxPath.Text;

if (path == "")

{

MessageBox.Show("Please select an AVI file at first.", "Information");

return;

}

string ext = path.Substring(path.Length - 3, 3);

ext = ext.ToLower();

ext = ext.Trim();

if (ext.CompareTo("avi") != 0)

{

MessageBox.Show("You must select an .avi file at first.", "Information");

return;

}

IntPtr capture = CvInvoke.cvCreateFileCapture(path);

if(capture==eof)

{

MessageBox.Show("can not create file capture:" + path, "Information");

return;

}

IntPtr frame = CvInvoke.cvQueryFrame(capture);

if(frame==eof)

{

MessageBox.Show("can not query frame from capture.", "Information");

return;

}

MCvRect c = CvInvoke.cvGetImageROI(frame);

IntPtr gray = CvInvoke.cvCreateImage(new MCvSize(c.width, c.height), Emgu.CV.CvEnum.IPL_DEPTH.IPL_DEPTH_8U, 1);

IntPtr canny = CvInvoke.cvCreateImage(new MCvSize(c.width, c.height), Emgu.CV.CvEnum.IPL_DEPTH.IPL_DEPTH_8U, 1);

int sobel;

double thresh1, thresh2;

CannyWindow cw = new CannyWindow();

cw.ShowDialog();

sobel = cw.sobel;

thresh1 = cw.thresh1;

thresh2 = cw.thresh2;

if (thresh1 == 0 || thresh2 == 0 || sobel == 0) return;

double fps = CvInvoke.cvGetCaptureProperty(capture, Emgu.CV.CvEnum.CAP_PROP.CV_CAP_PROP_FPS);

CvInvoke.cvNamedWindow("Canny检测");

while ((frame = CvInvoke.cvQueryFrame(capture)) != eof)

{

CvInvoke.cvCvtColor(frame, gray, Emgu.CV.CvEnum.COLOR_CONVERSION.CV_BGR2GRAY);

CvInvoke.cvCanny(gray, canny, thresh1,thresh2,sobel);

CvInvoke.cvFlip(canny, canny, 0);

CvInvoke.cvShowImage("Canny检测", canny);

int ch = CvInvoke.cvWaitKey(1000/(int)fps);

if (ch == 13) break;

}

CvInvoke.cvReleaseCapture(ref capture);

CvInvoke.cvReleaseImage(ref gray);

CvInvoke.cvReleaseImage(ref canny);

CvInvoke.cvDestroyWindow("Canny检测");

}

用Visual C#开发基于OpenCV的Windows应用程序的更多相关文章

  1. 在Windows下使用Dev-C++开发基于pthread.h的多线程程序【转】

    在Windows下使用Dev-C++开发基于pthread.h的多线程程序[转]     在Windows下使用Dev-C++开发基于pthread.h的多线程程序   文章分类:C++编程     ...

  2. windows下使用pycharm开发基于ansible api的python程序

    Window下python安装ansible,基于ansible api开发python程序 在windows下使用pycharm开发基于ansible api的python程序时,发现ansible ...

  3. Creating Dialogbased Windows Application (1) / 创建基于对话框的Windows应用程序(一)新建窗体 / VC++, Windows

    创建基于对话框的Windows应用程序(一) —— 新建窗体 1.新建一个Visual C++的Empty Project.  2.在Solution Explorer中右键Add New Item, ...

  4. Creating Dialogbased Windows Application (4) / 创建基于对话框的Windows应用程序(四)Edit Control、Combo Box的应用、Unicode转ANSI、Open File Dialog、文件读取、可变参数、文本框自动滚动 / VC++, Windows

    创建基于对话框的Windows应用程序(四)—— Edit Control.Combo Box的应用.Unicode转ANSI.Open File Dialog.文件读取.可变参数.自动滚动 之前的介 ...

  5. Creating Dialogbased Windows Application (3) / 创建基于对话框的Windows应用程序(三)Checkbox的应用、窗体置顶、设置图标 / VC++, Windows

    创建基于对话框的Windows应用程序(三) —— Checkbox的应用.窗体置顶.设置图标 上一节创建的窗体应用程序中,我们用到了Button和StaticText这两个控件.这一节中我们将学习使 ...

  6. Creating Dialogbased Windows Application (2) / 创建基于对话框的Windows应用程序(二)Button的应用、新建子窗体 / VC++, Windows

    创建基于对话框的Windows应用程序(二) —— Button的应用.新建子窗体 可以发现上一节创建的窗体中,点击OK和Cancel两个按钮是没有任何反应的.现在我们来为他们添加退出对话框的功能. ...

  7. 轻装上阵Flink--在IDEA上开发基于Flink的实时数据流程序

    前言 本文介绍如何在IDEA上快速开发基于Flink框架的DataStream程序.先直接上手! 环境清单 案例是在win7运行.安装VirtualBox,在VirtualBox上安装Centos操作 ...

  8. Windows下使用Dev-C++开发基于pthread.h的多线程程序

    一.下载Windows版本的pthread 目前最新版本是:pthreads-w32-2-9-1-release.zip. 二.解压pthread到指定目录      我选择的目录是:E:\DEV-C ...

  9. 使用VS2012开发基于Office 2013的AddIn程序

    默认VS2012开发的Office Add是基于2010的,如下所示: 如果你机器上安装的Office版本是2013,那么使用VS2012创建的工程是无法运行的,弹出如下的错误: 那么此时怎么办呢?将 ...

随机推荐

  1. Unity利用Share SDK实现QQ、微信及微博第三方登录及定制内容分享(附代码)

    最近因为公司的项目需要添加一些实用性的功能,需要添加第三方登录及分享,采用的是Mob的SDK,可以先到其官网下载对应的SDK 点击这里,为了方便后期进行数据统计和分析,所以可以先添加一个应用,添加成功 ...

  2. Blockchain For Dummies(IBM Limited Edition

    Blockchain For Dummies(IBM Limited Edition)笔记 该系列内容主要介绍用于商业的区块链,有人说区块链之于贸易,犹如因特网之于信息.在商业领域区块链可以用于交易任 ...

  3. 亚马逊首次推出卖家APP 可掌握商品盈利状况

    美国零售巨头亚马逊近日首次对外发布了第一款针对卖家和商户的客户端,帮助他们更加高效的管理商品和销售数据. 据美国科技新闻网站 Mashable 报道,之前亚马逊在商户移动客户端方面一直空缺,许多商户不 ...

  4. 调试和开发npm模块的方式

    ln -s(软连接) 假设my-project是运行npm模块的项目,vue-router是我们需要调试的npm模块 将vue-router下载到与my-project同级目录中. git clone ...

  5. windows环境下nginx服务器的安装与配置

    转载至:http://www.cnblogs.com/hxxy2003/archive/2012/09/20/2695254.html nginx服务器是一个高性能的HTTP和反向代理服务器,它以稳定 ...

  6. VIM字符编码基础知识

    1 字符编码基础知识 字符编码是计算机技术中最基本和最重要的知识之一.如果缺乏相关知识,请自行恶补之.这里仅做最简要的说明. 1.1 字符编码概述 所谓的字符编码,就是对人类发明的每一个文字进行数字 ...

  7. POJ 2392 Space Elevator 贪心+dp

    题目链接: http://poj.org/problem?id=2392 题意: 给你k类方块,每类方块ci个,每类方块的高度为hi,现在要报所有的方块叠在一起,每类方块的任何一个部分都不能出现在ai ...

  8. Java中的网络编程-2

    Socket编程:(一般的网络编程) <1> 两个 JAVA 应用程序可通过一个双向的网络通信连接, 实现数据交换, 这个双向链路的一段称为一个 Socket. <2> Soc ...

  9. lintcode-418-整数转罗马数字

    418-整数转罗马数字 给定一个整数,将其转换成罗马数字. 返回的结果要求在1-3999的范围内. 说明 什么是 罗马数字? https://en.wikipedia.org/wiki/Roman_n ...

  10. [hook.js]通用Javascript函数钩子及其他

    2013.02.16<:article id=post_content> 最近看Dom Xss检测相关的Paper,涉及到Hook Javascript函数,网上翻了一下,貌似没有什么通用 ...