C# OpenCvSharp 轮廓检测

目录

效果

代码

下载


效果

代码

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 OpenCvSharp;

using OpenCvSharp.Extensions;

namespace OpenCvSharp_轮廓检测

{

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

}

private void button1_Click(object sender, EventArgs e)

{

Mat srcImage = Cv2.ImRead("test.jpg");

Mat dstImage = ToolsFindContours(srcImage);

Bitmap Bitmap1 = BitmapConverter.ToBitmap(srcImage);

Bitmap Bitmap2 = BitmapConverter.ToBitmap(dstImage);

pictureBox1.Image = Bitmap1;

pictureBox2.Image = Bitmap2;

}

/// <summary>

/// 查找轮廓

/// </summary>

/// <param name="srcImage"></param>

/// <returns></returns>

public static Mat ToolsFindContours(Mat srcImage)

{

// 转化为灰度图

Mat src_gray = new Mat();

Cv2.CvtColor(srcImage, src_gray, ColorConversionCodes.RGB2GRAY);

// 滤波

Cv2.Blur(src_gray, src_gray, new OpenCvSharp.Size(3, 3));

// Canny边缘检测

Mat canny_Image = new Mat();

// 输入、输出、最小阀值、最大阀值

Cv2.Canny(src_gray, canny_Image, 100, 200);

// 获得轮廓

OpenCvSharp.Point[][] contours;

HierarchyIndex[] hierarchly;

/*

1.寻找轮廓的图像

2.返回轮廓数组

3.层次结构索引

4.轮廓的检索模式(External只检测外轮廓,List检测所有轮廓,CComp检测所有轮廓并建立两个等级,Tree检测所有轮廓并建立等级树

5.轮廓近似模式(ApproxNone保存物体边界上所有连续的轮廓点, ApproxSimple仅保存轮廓的拐点信息。CV_CHAIN_APPROX_TC89_L1,CV_CHAIN_APPROX_TC89_KCOS使用Teh-Chin chain 近似算法)

6.Point偏移量,所有的轮廓信息相对于原始图像对应点的偏移量

*/

Cv2.FindContours(canny_Image, out contours, out hierarchly, RetrievalModes.Tree, ContourApproximationModes.ApproxNone, new OpenCvSharp.Point(0, 0));

// 将结果画出并返回结果

Mat dst_Image = Mat.Zeros(canny_Image.Size(), srcImage.Type());

for (int i = 0; i < contours.Length; i++)

{

// 轮廓的颜色为绿色

Scalar color = new Scalar(0, 255, 0);

/*

1.输入图

2.表示输入的轮廓组

3.指明画第几个轮廓

4.颜色

5.thickness为轮廓的线宽,如果为负值或CV_FILLED表示填充轮廓内部

6.线形

7.轮廓结构信息

*/

Cv2.DrawContours(dst_Image, contours, i, color, 2, LineTypes.Link8, hierarchly);

}

return dst_Image;

}

}

}

cs 复制代码
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 OpenCvSharp;
using OpenCvSharp.Extensions;

namespace OpenCvSharp_轮廓检测
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Mat srcImage = Cv2.ImRead("test.jpg");
            Mat dstImage = ToolsFindContours(srcImage);

            Bitmap Bitmap1 = BitmapConverter.ToBitmap(srcImage);
            Bitmap Bitmap2 = BitmapConverter.ToBitmap(dstImage);

            pictureBox1.Image = Bitmap1;
            pictureBox2.Image = Bitmap2;
        }


        /// <summary>
        /// 查找轮廓
        /// </summary>
        /// <param name="srcImage"></param>
        /// <returns></returns>
        public static Mat ToolsFindContours(Mat srcImage)
        {
            // 转化为灰度图
            Mat src_gray = new Mat();
            Cv2.CvtColor(srcImage, src_gray, ColorConversionCodes.RGB2GRAY);
            // 滤波
            Cv2.Blur(src_gray, src_gray, new OpenCvSharp.Size(3, 3));
            // Canny边缘检测
            Mat canny_Image = new Mat();
            // 输入、输出、最小阀值、最大阀值
            Cv2.Canny(src_gray, canny_Image, 100, 200);
            // 获得轮廓
            OpenCvSharp.Point[][] contours;
            HierarchyIndex[] hierarchly;
            /*
            1.寻找轮廓的图像
            2.返回轮廓数组
            3.层次结构索引
            4.轮廓的检索模式(External只检测外轮廓,List检测所有轮廓,CComp检测所有轮廓并建立两个等级,Tree检测所有轮廓并建立等级树
            5.轮廓近似模式(ApproxNone保存物体边界上所有连续的轮廓点, ApproxSimple仅保存轮廓的拐点信息。CV_CHAIN_APPROX_TC89_L1,CV_CHAIN_APPROX_TC89_KCOS使用Teh-Chin chain 近似算法)
            6.Point偏移量,所有的轮廓信息相对于原始图像对应点的偏移量
            */
            Cv2.FindContours(canny_Image, out contours, out hierarchly, RetrievalModes.Tree, ContourApproximationModes.ApproxNone, new OpenCvSharp.Point(0, 0));
            // 将结果画出并返回结果
            Mat dst_Image = Mat.Zeros(canny_Image.Size(), srcImage.Type());
            for (int i = 0; i < contours.Length; i++)
            {
                // 轮廓的颜色为绿色
                Scalar color = new Scalar(0, 255, 0);
                /*
                1.输入图
                2.表示输入的轮廓组
                3.指明画第几个轮廓
                4.颜色
                5.thickness为轮廓的线宽,如果为负值或CV_FILLED表示填充轮廓内部
                6.线形
                7.轮廓结构信息
                */
                Cv2.DrawContours(dst_Image, contours, i, color, 2, LineTypes.Link8, hierarchly);
            }
            return dst_Image;
        }
    }
}

下载

Demo下载

相关推荐
忒可君7 分钟前
C# winform 报错:类型“System.Int32”的对象无法转换为类型“System.Int16”。
java·开发语言
GuYue.bing18 分钟前
网络下载ts流媒体
开发语言·python
geovindu19 分钟前
CSharp: Oracle Stored Procedure query table
数据库·oracle·c#·.net
StringerChen25 分钟前
Qt ui提升窗口的头文件找不到
开发语言·qt
数据小爬虫@31 分钟前
如何利用PHP爬虫获取速卖通(AliExpress)商品评论
开发语言·爬虫·php
yngsqq1 小时前
cad c# 二次开发 ——动态加载dll 文件制作(loada netloadx)
c#
java1234_小锋1 小时前
MyBatis如何处理延迟加载?
java·开发语言
FeboReigns2 小时前
C++简明教程(10)(初识类)
c语言·开发语言·c++
学前端的小朱2 小时前
处理字体图标、js、html及其他资源
开发语言·javascript·webpack·html·打包工具
摇光932 小时前
js高阶-async与事件循环
开发语言·javascript·事件循环·宏任务·微任务