修复注释乱码

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,24 +1,24 @@
// ============================================================================
// Copyright © 2026 Hexagon Technology Center GmbH. All Rights Reserved.
// 文件å? OrProcessor.cs
// 文件名: OrProcessor.cs
// 描述: 或运算算子,用于图像逻辑运算
// 功能:
// - 对图像进行按位或运算
// - 支持与固定值或运算
// - 可用于图像合并和掩码操作
// 算法: 像素级按位或运算
// 作è€? æŽä¼Ÿ wei.lw.li@hexagon.com
// 作者: 李伟 wei.lw.li@hexagon.com
// ============================================================================
using Emgu.CV;
using Emgu.CV.Structure;
using Serilog;
using XP.ImageProcessing.Core;
using Serilog;
namespace XP.ImageProcessing.Processors;
/// <summary>
/// 或è¿ç®—ç®—å­?
/// 或运算算子
/// </summary>
public class OrProcessor : ImageProcessorBase
{