资源简介
BGRtoGRAY.rar
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Emgu.CV;
using Emgu.CV.CvEnum;
using Emgu.CV.Structure;
using System.Runtime.InteropServices;
namespace BGRtoGRAY
{
public partial class ToGrayImage : Form
{
public ToGrayImage()
{
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
//IntPtr ptrImage = CvInvoke.cvLoadImage(openFileDialog1.FileName LOAD_IMAGE_TYPE.CV_LOAD_IMAGE_UNCHANGED);
/* IplImage* 转换为Bitmap */
//图片读取
Image image = new Image(openFileDialog1.FileName);
pictureBox1.Image = image.Bitmap;//ConvertIntPrToBitmap(ptrImage);
Image imageGray = image.Convert();
imageGray.Save(@“C:\temp\b.bmp“);
pictureBox2.Image = imageGray.Bitmap;
//显示灰度图像
//IntPtr grayImage = CvInvoke.cvCreateImage(CvInvoke.cvGetSize(ptrImage) IPL_DEPTH.IPL_DEPTH_8U 1);
//CvInvoke.cvCvtColor(ptrImage grayImage COLOR_CONVERSION.CV_BGR2GRAY);
////pictureBox2.Image = ConvertIntPrToBitmap(grayImage); //用该方法灰度图像会有三个图片
//MIplImage mi = (MIplImage)Marshal.PtrToStructure(grayImage typeof(MIplImage));
//Image image = new Image(mi.width mi.height mi.widthStep mi.imageData);
//pictureBox2.Image = image.ToBitmap();
//CvInvoke.cvReleaseImage(ref ptrImage);
//CvInvoke.cvReleaseImage(ref grayImage);
}
}
/// 将IplImage*转换为Bitmap(注:在OpenCV中IplImage* 对应EmguCV的IntPtr类型)
public static Bitmap ConvertIntPrToBitmap(IntPtr ptrImage)
{
//将IplImage指针转换成MIplImage结构
MIplImage mi = (MIplImage)Marshal.PtrToStructure(ptrImage typeof(MIplImage));
Image image = new Image(mi.width mi.height mi.widthStep mi.imageData);
return image.ToBitmap();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5875 2014-08-27 20:14 BGRtoGRAY\BGRtoGRAY\BGRtoGRAY.csproj
文件 828478 2014-08-27 20:20 BGRtoGRAY\BGRtoGRAY\bin\Debug\a.bmp
文件 9728 2014-11-10 16:51 BGRtoGRAY\BGRtoGRAY\bin\Debug\BGRtoGRAY.exe
文件 32256 2014-11-10 16:51 BGRtoGRAY\BGRtoGRAY\bin\Debug\BGRtoGRAY.pdb
文件 11600 2014-11-10 16:51 BGRtoGRAY\BGRtoGRAY\bin\Debug\BGRtoGRAY.vshost.exe
文件 490 2010-03-17 22:39 BGRtoGRAY\BGRtoGRAY\bin\Debug\BGRtoGRAY.vshost.exe.manifest
文件 322048 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.dll
文件 42496 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.GPU.dll
文件 112128 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.GPU.pdb
文件 148820 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.GPU.xm
文件 36864 2013-09-23 20:41 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.ML.dll
文件 146004 2013-09-23 20:41 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.ML.xm
文件 8192 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.OCR.dll
文件 15872 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.OCR.pdb
文件 9792 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.OCR.xm
文件 40960 2013-09-23 20:41 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.OpenCL.dll
文件 94430 2013-09-23 20:41 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.OpenCL.xm
文件 929280 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.pdb
文件 5632 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.Stitching.dll
文件 13824 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.Stitching.pdb
文件 1153 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.Stitching.xm
文件 113664 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.UI.dll
文件 140800 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.UI.pdb
文件 35149 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.UI.xm
文件 1227431 2014-04-16 12:18 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.CV.xm
文件 25088 2014-04-16 12:17 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.Util.dll
文件 58880 2014-04-16 12:17 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.Util.pdb
文件 22455 2014-04-16 12:17 BGRtoGRAY\BGRtoGRAY\bin\Debug\Emgu.Util.xm
文件 307200 2013-02-09 07:33 BGRtoGRAY\BGRtoGRAY\bin\Debug\ZedGraph.dll
文件 1492968 2013-02-09 07:33 BGRtoGRAY\BGRtoGRAY\bin\Debug\ZedGraph.xm
............此处省略38个文件信息
- 上一篇:FlyingShootGame2.zip
- 下一篇:PADS最全封装库.zip
相关资源
- PADS最全封装库.zip
- FlyingShootGame2.zip
- 01背包问题.zip
- n96d96.zip
- WinTcpS7_SmartV35.rar
- 定量遥感期末复习整理.pdf
- iso22301_whitepaper.pdf
- joomlabit_10299637.zip
- 广工新技术报告.docx
- 教育网站后台管理系统源代码.rar
- HelloVive.rar
- VC点云数据显示,OPENGL图像渲染.rar
- Agilent34970.zip
- Dlion-开源固件源码V03版本及说明.rar
- Dais_CM.exe
- MISRAC2012GuidelinesfortheuseoftheClanguageinc
- 君正Linux_开发指南.pdf
- doc.tgz
- DSP原理与应用_张卫宁_第8章.ppt
- OTIS调试手机端.zip
- StuManager.zip
- Linux-Arm(嵌入式开发参考).pdf
- 正交设计助手IIV3.1专业版免安装完美
- 单片机入门到精通高清PDF单片机精华
- bw02w7.doc
- GroupingView_src.zip
- C双色球彩票模拟抽奖、随机生成号码
- 国际地球自转和参考系统技术通知第
- 网站整站器.rar
- 星载双频软件GPS接收机研究.kdh
评论
共有 条评论