• Emgu CV4图像处理之轮廓查找与绘制15(C#)


    本文测试环境:

    win10  64位

    vistual studio 2019  

    Emgu CV 4.6.0

    环境配置准备:

    1 新增控制台项目,.net framework为4.7.2

    2  把win-x64目录的native目录下的文件全部拷贝到项目的运行目录Debug目录下

    3  项目选择x64

    4 添加项目引用Emgu.CV.dll、Emgu.CV.Platform.NetFramework.dll、System.Drawing.dll和System.Runtime.InteropServices.RuntimeInformation.dll  

    具体配置参考:
    Emgu CV4图像处理之环境搭建1(C#)_zxy2847225301的博客-CSDN博客

    下面的内容参考自:21-22轮廓绘制(EmguCV学习)_牛客博客

    查找轮廓API函数原型:

     

    其中轮廓contours可以使用VectorOfVectorOfPoint contours = new VectorOfVectorOfPoint()进行存储;hierarchy可以使用VectorOfRect hierarchy = new VectorOfRect()进行存储

    参考例子:

    stopSign.png原图如下:

    代码如下:

    1. using Emgu.CV;
    2. using Emgu.CV.Structure;
    3. using Emgu.CV.Util;
    4. using System;
    5. using System.Collections.Generic;
    6. using System.Drawing;
    7. using System.IO;
    8. using System.Linq;
    9. using System.Text;
    10. using System.Threading.Tasks;
    11. namespace EmguCVDemo2
    12. {
    13. class Program
    14. {
    15. static void Main(string[] args)
    16. {
    17. Image srcPic = new Image("stopSign.png");
    18. ImgFindContoursAndDraw1(srcPic);
    19. CvInvoke.WaitKey(0);
    20. Console.ReadLine();
    21. }
    22. ///
    23. /// 查找轮廓并绘制轮廓(方式1)
    24. ///
    25. ///
    26. private static void ImgFindContoursAndDraw1(Image srcPic)
    27. {
    28. CvInvoke.Imshow("srcPic_before", srcPic);
    29. Mat gray_srvPic = new Mat();
    30. //转灰度图
    31. CvInvoke.CvtColor(srcPic, gray_srvPic, Emgu.CV.CvEnum.ColorConversion.Bgr2Gray);
    32. VectorOfVectorOfPoint contours = new VectorOfVectorOfPoint();
    33. VectorOfRect hierarchy = new VectorOfRect();
    34. //二值化
    35. CvInvoke.Threshold(gray_srvPic, gray_srvPic, 100, 255, Emgu.CV.CvEnum.ThresholdType.Binary);
    36. //查找轮廓
    37. CvInvoke.FindContours(gray_srvPic, contours, hierarchy, Emgu.CV.CvEnum.RetrType.Tree, Emgu.CV.CvEnum.ChainApproxMethod.ChainApproxSimple);
    38. //绘制轮廓
    39. Mat countours_Pic = new Mat(srcPic.Size, Emgu.CV.CvEnum.DepthType.Cv8U, 3);
    40. for (int i = 0; i < contours.Size; i++)
    41. {
    42. VectorOfPoint vectorOfPoint = contours[i]; //轮廓是由点组成的,这是一个轮廓向量点的集合
    43. for (int j = 0; j< vectorOfPoint.Size-1; j++) //这里绘制的轮廓就差最后一条线还没有闭合
    44. {
    45. CvInvoke.Line(countours_Pic, vectorOfPoint[j], vectorOfPoint[j + 1], new MCvScalar(0, 255, 0), 3);
    46. CvInvoke.Line(srcPic, vectorOfPoint[j], vectorOfPoint[j+1], new MCvScalar(0, 255, 0),3);
    47. }
    48. //最后一个点要起点相连,才能算全部闭合
    49. CvInvoke.Line(countours_Pic, vectorOfPoint[vectorOfPoint.Size - 1], vectorOfPoint[0], new MCvScalar(0, 255, 0), 3);
    50. CvInvoke.Line(srcPic, vectorOfPoint[vectorOfPoint.Size-1], vectorOfPoint[0], new MCvScalar(0, 255, 0), 3);
    51. }
    52. CvInvoke.Imshow("countours_Pic", countours_Pic);
    53. CvInvoke.Imshow("srcPic_after", srcPic);
    54. CvInvoke.WaitKey(0);
    55. }
    56. }
    57. }

     运行结果如下:

    其中srcPic_before是原图,countours_Pic是轮廓,srcPic_after是在原图中绘制轮廓

    上面的例子是找到轮廓后,遍历轮廓的点,然后把点与点直接通过直线连接起来组成轮廓,其实不用那么麻烦,EmguCV已经提供绘制轮廓的Api了,函数原型如下:

    image:要绘制轮廓的图像

    contours:通过查找轮廓函数查找到的轮廓信息

    contourIds:要绘制contours中的那一条,一般遍历contours获取到,如contours[0]

    color:线条的颜色,如new McvScalar(0,255,0)

    thickness[可选]:线条的粗细

    例子代码如下:

    1. using Emgu.CV;
    2. using Emgu.CV.Structure;
    3. using Emgu.CV.Util;
    4. using System;
    5. using System.Collections.Generic;
    6. using System.Drawing;
    7. using System.IO;
    8. using System.Linq;
    9. using System.Text;
    10. using System.Threading.Tasks;
    11. namespace EmguCVDemo2
    12. {
    13. class Program
    14. {
    15. static void Main(string[] args)
    16. {
    17. Image srcPic = new Image("stopSign.png");
    18. ImgFindContoursAndDraw2(srcPic);
    19. CvInvoke.WaitKey(0);
    20. Console.ReadLine();
    21. }
    22. ///
    23. /// 查找轮廓并绘制轮廓(方式2)
    24. ///
    25. ///
    26. private static void ImgFindContoursAndDraw2(Image srcPic)
    27. {
    28. CvInvoke.Imshow("srcPic_before", srcPic);
    29. Mat gray_srvPic = new Mat();
    30. //转灰度图
    31. CvInvoke.CvtColor(srcPic, gray_srvPic, Emgu.CV.CvEnum.ColorConversion.Bgr2Gray);
    32. VectorOfVectorOfPoint contours = new VectorOfVectorOfPoint();
    33. VectorOfRect hierarchy = new VectorOfRect();
    34. //二值化
    35. CvInvoke.Threshold(gray_srvPic, gray_srvPic, 100, 255, Emgu.CV.CvEnum.ThresholdType.Binary);
    36. //查找轮廓
    37. CvInvoke.FindContours(gray_srvPic, contours, hierarchy, Emgu.CV.CvEnum.RetrType.Tree, Emgu.CV.CvEnum.ChainApproxMethod.ChainApproxSimple);
    38. //绘制轮廓
    39. Mat countours_Pic = new Mat(srcPic.Size, Emgu.CV.CvEnum.DepthType.Cv8U, 3);
    40. for (int i = 0; i < contours.Size; i++) //遍历轮廓
    41. {
    42. CvInvoke.DrawContours(countours_Pic, contours, i, new MCvScalar(0, 255, 0), 3);
    43. CvInvoke.DrawContours(srcPic, contours, i, new MCvScalar(0, 255, 0), 3);
    44. }
    45. CvInvoke.Imshow("countours_Pic", countours_Pic);
    46. CvInvoke.Imshow("srcPic_after", srcPic);
    47. CvInvoke.WaitKey(0);
    48. }
    49. }
    50. }

     运行结果如下:

     

     

     

  • 相关阅读:
    14_墨菲定律书摘
    mysql安装
    计算机毕业设计Java幼儿园管理系统(源码+系统+mysql数据库+Lw文档)
    分布式/微服务---第五篇
    02.机器学习原理(复习)
    软考中级网络工程师全面学习笔记第2版(5万字)+配套视频及课件
    史上最全详解微服务技术栈
    聊聊HttpClient的重试机制
    基于webpack5从0搭建Vue脚手架
    C++中的结构体以及和类的区别
  • 原文地址:https://blog.csdn.net/zxy13826134783/article/details/127785478