导入必要的NuGet包: 首先,你需要在你的C#项目中安装OpenCV的NuGet包。你可以通过在NuGet包管理器中搜索"Emgu.CV"并安装来实现。
加载图像: 使用Emgu.CV库加载图像。
using Emgu.CV;
using Emgu.CV.Structure;
// 加载图像
Image<Bgr, byte> originalImage = new Image<Bgr, byte>("your_image_path");
// 转换为灰度图像
Image<Gray, byte> grayImage = originalImage.Convert<Gray, byte>();
// 进行二值化处理
grayImage = grayImage.ThresholdBinary(new Gray(127), new Gray(255));
FindContours
方法提取图像中的轮廓。 using Emgu.CV.CvEnum;
using System.Collections.Generic;
// 提取轮廓
List<Mat> contours = new List<Mat>();
Mat hierarchy = new Mat();
CvInvoke.FindContours(grayImage, contours, hierarchy, RetrType.List, ChainApproxMethod.ChainApproxSimple);
// 在原始图像上绘制轮廓
foreach (Mat contour in contours)
{
CvInvoke.DrawContours(originalImage, contours, -1, new Bgr(Color.Red), 2);
}
// 显示结果
CvInvoke.Imshow("Image with Contours", originalImage);
CvInvoke.WaitKey(0);