http://blog.csdn.net/marvinhong/article/details/6800450

图像显示在控件loadPictureBox上

方法一

//读取图像001.jpg

IntPtr img = CvInvoke.cvLoadImage("001.jpg", Emgu.CV.CvEnum.LOAD_IMAGE_TYPE.CV_LOAD_IMAGE_COLOR);

//IntPtr转换为Image,详细见IntPtr2Image方法

loadPictureBox.Image = IntPtr2Image(img);

//显示图像窗口

CvInvoke.cvShowImage("view", img);

//窗口保留2000毫秒,即2秒
CvInvoke.cvWaitKey(2000);

//关闭窗口
CvInvoke.cvDestroyWindow("view");

//保存图像
CvInvoke.cvSaveImage("002.jpg", img);

//释放
CvInvoke.cvReleaseImage(ref img);

  1. private Image IntPtr2Image(IntPtr src)
  2. {
  3. MIplImage img = (MIplImage)Marshal.PtrToStructure(src, typeof(MIplImage));
  4. Bitmap disp = new Bitmap(img.width, img.height, PixelFormat.Format24bppRgb);
  5. BitmapData bmp = disp.LockBits(new Rectangle(0, 0, img.width, img.height), ImageLockMode.WriteOnly, PixelFormat.Format24bppRgb);
  6. long linebytes = (img.width * 24 + 31) / 32 * 4;
  7. unsafe
  8. {
  9. byte* pixel = (byte*)bmp.Scan0.ToPointer();
  10. if (img.nChannels == 3)
  11. {
  12. for (int i = 0; i < img.height; i++)
  13. {
  14. for (int j = 0, n = 0; j < img.width; j++, n++)
  15. {
  16. byte b = ((byte*)img.imageData + img.widthStep * i)[3 * j];
  17. byte g = ((byte*)img.imageData + img.widthStep * i)[3 * j + 1];
  18. byte r = ((byte*)img.imageData + img.widthStep * i)[3 * j + 2];
  19. *(pixel + linebytes * (i) + n) = b;
  20. n++;
  21. *(pixel + linebytes * (i) + n) = g;
  22. n++;
  23. *(pixel + linebytes * (i) + n) = r;
  24. }
  25. }
  26. }
  27. else if (img.nChannels == 1)
  28. {
  29. for (int i = 0; i < img.height; i++)
  30. {
  31. for (int j = 0, n = 0; j < img.width; j++, n++)
  32. {
  33. byte g = ((byte*)img.imageData + img.widthStep * i)[j];
  34. *(pixel + linebytes * (i) + n) = g;
  35. n++;
  36. *(pixel + linebytes * (i) + n) = g;
  37. n++;
  38. *(pixel + linebytes * (i) + n) = g;
  39. }
  40. }
  41. }
  42. else
  43. {
  44. return null;
  45. }
  46. }
  47. disp.UnlockBits(bmp);
  48. return (Image)disp;
  49. }

方法二

Image<Bgr, Byte> img = new Image<Bgr, byte>("001.jpg");

loadPictureBox.Image = img.ToBitmap();

C# Emgu CV学习笔记二之图像读写的两种方法的更多相关文章

  1. MySQL学习笔记(2) - 修改MySQL提示符的两种方法

    学习于慕课网 http://www.imooc.com/video/1806 1.方法一: cmd中处于未登录状态时,输入 mysql -uroot -p自己的密码 --prompt 新的提示符 示例 ...

  2. TQ2440学习笔记——Linux上I2C驱动的两种实现方法(1)

    作者:彭东林 邮箱:pengdonglin137@163.com 内核版本:Linux-3.14 u-boot版本:U-Boot 2015.04 硬件:TQ2440 (NorFlash:2M   Na ...

  3. PMP知识点(二)——三点估算的两种方法对活动持续时间估算的影响和如何取舍

    一.准备工作 活动持续时间的估算属于PMBOK中第六章项目时间管理中第五节6.6估算活动持续时间的内容. 三点估算是6.5和7.2(估算成本)中应用到的一种工具和技术.数据流向图参考如下: 其应用到的 ...

  4. java web学习总结(二十九) -------------------JavaBean的两种开发模式

    SUN公司推出JSP技术后,同时也推荐了两种web应用程序的开发模式,一种是JSP+JavaBean模式,一种是Servlet+JSP+JavaBean模式. 一.JSP+JavaBean开发模式 1 ...

  5. Emgu cv 学习笔记

    http://www.cnblogs.com/CoverCat/p/5003363.html emgu中imagebox与picturebox imagebox 是emgu   设置好厚,新出现的控件 ...

  6. Android(java)学习笔记147:textView 添加超链接(两种实现方式,,区别于WebView)

    1.方式1: LinearLayout layout = new LinearLayout(this); LinearLayout.LayoutParams params = new LinearLa ...

  7. PHP学习笔记,curl,file_get_content,include和fopen四种方法获取远程文件速度测试.

    这几天在做抓取.发现用PHP的file_get_contents函数来获取远程文件的过程中总是出现失败,并且效率很低下.所以就做了个测试的demo来测试下PHP中各种方法获取文件的速度. 程序里面使用 ...

  8. react学习笔记1之声明组件的两种方式

    //定义组件有两种方式,函数和类 function Welcome(props) { return <h1>Hello, {props.name}</h1>; } class ...

  9. angular学习笔记(三)-视图绑定数据的两种方式

    绑定数据有两种方式: <!DOCTYPE html> <html ng-app> <head> <title>2.2显示文本</title> ...

随机推荐

  1. winform圆角窗体实现

    winform圆角窗体实现 1.窗体的FormBorderStyle设置成None,不要控制边框 2.TransparencyKey和BackColor颜色设置成相同的,这样,窗体就透明了 3.以此为 ...

  2. centos 7 install gnome etc

    centos yum 有grouplist子命令,可以查看当前系统有多少软件组件,里面就有gnome:"GNOME Desktop" sudo yum groupinstall G ...

  3. Python基础灬序列(字符串、列表、元组)

    序列 序列是指它的成员都是有序排列,并且可以通过下标偏移量访问到它的一个或几个成员.序列包含字符串.列表.元组. 字符串 chinese_zodiac = '鼠牛虎兔龙蛇马羊猴鸡狗猪' print(c ...

  4. jpa的@Query中"?"占位符的使用小坑

    今天使用@Query自定义查询语句,出现了一个错误: java.lang.IllegalArgumentException: Parameter with that position [1] did ...

  5. 学习使用Git 版本控制 代码管理

    title: 学习使用Git 版本控制 代码管理 notebook: 经验累积 tags:Git --- Git 版本控制 学习教程 Git版本控制器,可以作为程序员.计算机科学和软件工程的研究人员在 ...

  6. C#判断字符串中是否有数字

    // <summary> /// 提取字符串中的数字字符串 /// </summary> /// <param name="str"></ ...

  7. Centos7 Zabbix监控部署

    Zabbix监控 官方文档 https://www.zabbix.com/documentation/3.4/zh/manual https://www.zabbix.com/documentatio ...

  8. 冲刺ing-3

    第三次Scrum冲刺 队员完成的任务 队员 完成任务 吴伟华 分配任务,燃尽图 蔺皓雯 编写博客,美化主界面 蔡晨旸 美化主界面 曾茜 主页面设计 鲁婧楠 服务器建构 杨池宇 服务器建构 成员遇到的问 ...

  9. HDU 5496 Beauty of Sequence

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5496 Beauty of Sequence Problem Description Sequence ...

  10. 【Leetcode】113Path Sum II

    Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given su ...