修复注释乱码

This commit is contained in:
李伟
2026-04-14 17:11:31 +08:00
parent b8bcefc84b
commit cd03e30bb8
58 changed files with 761 additions and 767 deletions
@@ -1,6 +1,6 @@
// ============================================================================
// Copyright © 2026 Hexagon Technology Center GmbH. All Rights Reserved.
// 文件å? MorphologyProcessor.cs
// 文件名: MorphologyProcessor.cs
// 描述: 形态学处理算子,用于二值图像的形态学操作
// 功能:
// - 腐蚀(Erode):收缩目标区域
@@ -8,15 +8,15 @@
// - 开运算(Open):先腐蚀后膨胀,去除小目标
// - 闭运算(Close):先膨胀后腐蚀,填充小孔洞
// 算法: 数学形态学运算
// 作è€? æŽä¼Ÿ wei.lw.li@hexagon.com
// 作者: 李伟 wei.lw.li@hexagon.com
// ============================================================================
using Emgu.CV;
using Emgu.CV.CvEnum;
using Emgu.CV.Structure;
using XP.ImageProcessing.Core;
using Serilog;
using System.Drawing;
using XP.ImageProcessing.Core;
namespace XP.ImageProcessing.Processors;