diff --git a/XP.Camera/Calibration/CalibrationLocalizedStrings.cs b/XP.Camera/Calibration/CalibrationLocalizedStrings.cs
index a914b9c..e165938 100644
--- a/XP.Camera/Calibration/CalibrationLocalizedStrings.cs
+++ b/XP.Camera/Calibration/CalibrationLocalizedStrings.cs
@@ -1,8 +1,94 @@
-using XP.Camera.Calibration.Resources;
+using System.ComponentModel;
+using System.Globalization;
+using System.Resources;
+using System.Runtime.CompilerServices;
namespace XP.Camera.Calibration;
-public class CalibrationLocalizedStrings
+///
+/// 本地化字符串包装类
+/// 使用 XP.Common.Resources.Resources 获取本地化字符串
+///
+public class CalibrationLocalizedStrings : INotifyPropertyChanged
{
- public CalibrationResources Resources { get; } = new CalibrationResources();
+ private static readonly ResourceManager _resourceManager = new(
+ "XP.Common.Resources.Resources",
+ typeof(XP.Common.Resources.Resources).Assembly);
+
+ public event PropertyChangedEventHandler? PropertyChanged;
+
+ protected void OnPropertyChanged([CallerMemberName] string? propertyName = null)
+ {
+ PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
+ }
+
+ private string GetString(string key)
+ {
+ return _resourceManager.GetString(key, CultureInfo.CurrentUICulture) ?? key;
+ }
+
+ // 九点标定
+ public string CalibrationToolTitle => GetString("CalibrationToolTitle");
+ public string CalibrationLoadImage => GetString("CalibrationLoadImage");
+ public string CalibrationLoadCsv => GetString("CalibrationLoadCsv");
+ public string CalibrationExecute => GetString("CalibrationExecute");
+ public string CalibrationSave => GetString("CalibrationSave");
+ public string CalibrationLoad => GetString("CalibrationLoad");
+ public string CalibrationShowWorld => GetString("CalibrationShowWorld");
+ public string CalibrationPointList => GetString("CalibrationPointList");
+ public string CalibrationPixelX => GetString("CalibrationPixelX");
+ public string CalibrationPixelY => GetString("CalibrationPixelY");
+ public string CalibrationWorldX => GetString("CalibrationWorldX");
+ public string CalibrationWorldY => GetString("CalibrationWorldY");
+ public string CalibrationStatusReady => GetString("CalibrationStatusReady");
+ public string CalibrationStatusImageLoaded => GetString("CalibrationStatusImageLoaded");
+ public string CalibrationStatusCsvLoaded => GetString("CalibrationStatusCsvLoaded");
+ public string CalibrationStatusSuccess => GetString("CalibrationStatusSuccess");
+ public string CalibrationStatusFailed => GetString("CalibrationStatusFailed");
+ public string CalibrationStatusSaved => GetString("CalibrationStatusSaved");
+ public string CalibrationStatusLoaded => GetString("CalibrationStatusLoaded");
+ public string CalibrationCoordinates => GetString("CalibrationCoordinates");
+ public string CalibrationErrorMinPoints => GetString("CalibrationErrorMinPoints");
+ public string CalibrationSuccessTitle => GetString("CalibrationSuccessTitle");
+ public string CalibrationSuccessMessage => GetString("CalibrationSuccessMessage");
+ public string CalibrationSaveSuccess => GetString("CalibrationSaveSuccess");
+ public string CalibrationLoadSuccess => GetString("CalibrationLoadSuccess");
+ public string CalibrationLoadFailed => GetString("CalibrationLoadFailed");
+
+ // 棋盘格标定
+ public string ChessboardToolTitle => GetString("ChessboardToolTitle");
+ public string ChessboardAddImages => GetString("ChessboardAddImages");
+ public string ChessboardClearImages => GetString("ChessboardClearImages");
+ public string ChessboardCalibrate => GetString("ChessboardCalibrate");
+ public string ChessboardSave => GetString("ChessboardSave");
+ public string ChessboardLoad => GetString("ChessboardLoad");
+ public string ChessboardUndistort => GetString("ChessboardUndistort");
+ public string ChessboardParameters => GetString("ChessboardParameters");
+ public string ChessboardWidth => GetString("ChessboardWidth");
+ public string ChessboardHeight => GetString("ChessboardHeight");
+ public string ChessboardSquareSize => GetString("ChessboardSquareSize");
+ public string ChessboardImageList => GetString("ChessboardImageList");
+ public string ChessboardStatusInfo => GetString("ChessboardStatusInfo");
+ public string ChessboardStatusReady => GetString("ChessboardStatusReady");
+ public string ChessboardStatusAdded => GetString("ChessboardStatusAdded");
+ public string ChessboardStatusCleared => GetString("ChessboardStatusCleared");
+ public string ChessboardStatusCalibrating => GetString("ChessboardStatusCalibrating");
+ public string ChessboardStatusSuccess => GetString("ChessboardStatusSuccess");
+ public string ChessboardStatusFailed => GetString("ChessboardStatusFailed");
+ public string ChessboardStatusSaved => GetString("ChessboardStatusSaved");
+ public string ChessboardStatusLoaded => GetString("ChessboardStatusLoaded");
+ public string ChessboardStatusUndistorted => GetString("ChessboardStatusUndistorted");
+ public string ChessboardStatusImageError => GetString("ChessboardStatusImageError");
+ public string ChessboardProgressPreparing => GetString("ChessboardProgressPreparing");
+ public string ChessboardProgressDetecting => GetString("ChessboardProgressDetecting");
+ public string ChessboardProgressCalibrating => GetString("ChessboardProgressCalibrating");
+ public string ChessboardProgressCalculating => GetString("ChessboardProgressCalculating");
+ public string ChessboardProgressComplete => GetString("ChessboardProgressComplete");
+ public string ChessboardProgressFailed => GetString("ChessboardProgressFailed");
+ public string ChessboardErrorMinImages => GetString("ChessboardErrorMinImages");
+ public string ChessboardErrorInsufficientValid => GetString("ChessboardErrorInsufficientValid");
+ public string ChessboardSaveSuccess => GetString("ChessboardSaveSuccess");
+ public string ChessboardLoadSuccess => GetString("ChessboardLoadSuccess");
+ public string ChessboardCalibrationComplete => GetString("ChessboardCalibrationComplete");
+ public string ChessboardImageError => GetString("ChessboardImageError");
}
diff --git a/XP.Camera/LocalizationHelper.cs b/XP.Camera/LocalizationHelper.cs
new file mode 100644
index 0000000..52e8cb8
--- /dev/null
+++ b/XP.Camera/LocalizationHelper.cs
@@ -0,0 +1,43 @@
+using System.Globalization;
+using System.Resources;
+
+namespace XP.Camera;
+
+///
+/// 本地化辅助类
+/// 使用 XP.Common 的资源文件
+///
+public static class LocalizationHelper
+{
+ private static ResourceManager? _resourceManager;
+
+ private static ResourceManager ResourceManager
+ {
+ get
+ {
+ if (_resourceManager == null)
+ {
+ _resourceManager = new ResourceManager(
+ "XP.Common.Resources.Resources",
+ typeof(XP.Common.Resources.Resources).Assembly);
+ }
+ return _resourceManager;
+ }
+ }
+
+ ///
+ /// 获取本地化字符串
+ ///
+ public static string GetString(string key)
+ {
+ try
+ {
+ var value = ResourceManager.GetString(key, CultureInfo.CurrentUICulture);
+ return value ?? key;
+ }
+ catch
+ {
+ return key;
+ }
+ }
+}
\ No newline at end of file
diff --git a/XP.Common/Resources/Resources.Designer.cs b/XP.Common/Resources/Resources.Designer.cs
index ef3a95e..a99fa51 100644
--- a/XP.Common/Resources/Resources.Designer.cs
+++ b/XP.Common/Resources/Resources.Designer.cs
@@ -1,4 +1,4 @@
-//------------------------------------------------------------------------------
+//------------------------------------------------------------------------------
//
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
@@ -19,7 +19,7 @@ namespace XP.Common.Resources {
// 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
// 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
// (以 /str 作为命令选项),或重新生成 VS 项目。
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Resources {
@@ -60,6 +60,24 @@ namespace XP.Common.Resources {
}
}
+ ///
+ /// 查找类似 测量共端点两条射线的夹角 的本地化字符串。
+ ///
+ public static string AngleMeasurementProcessor_Description {
+ get {
+ return ResourceManager.GetString("AngleMeasurementProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 角度测量 的本地化字符串。
+ ///
+ public static string AngleMeasurementProcessor_Name {
+ get {
+ return ResourceManager.GetString("AngleMeasurementProcessor_Name", resourceCulture);
+ }
+ }
+
///
/// 查找类似 XplorePlane X射线检测系统 的本地化字符串。
///
@@ -69,6 +87,366 @@ namespace XP.Common.Resources {
}
}
+ ///
+ /// 查找类似 保留指定频率范围内的图像信息 的本地化字符串。
+ ///
+ public static string BandPassFilterProcessor_Description {
+ get {
+ return ResourceManager.GetString("BandPassFilterProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 滤波器类型 的本地化字符串。
+ ///
+ public static string BandPassFilterProcessor_FilterType {
+ get {
+ return ResourceManager.GetString("BandPassFilterProcessor_FilterType", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 滤波器的过渡特性 的本地化字符串。
+ ///
+ public static string BandPassFilterProcessor_FilterType_Desc {
+ get {
+ return ResourceManager.GetString("BandPassFilterProcessor_FilterType_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高频截止半径 的本地化字符串。
+ ///
+ public static string BandPassFilterProcessor_HighCutoff {
+ get {
+ return ResourceManager.GetString("BandPassFilterProcessor_HighCutoff", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高于此频率的成分将被去除 的本地化字符串。
+ ///
+ public static string BandPassFilterProcessor_HighCutoff_Desc {
+ get {
+ return ResourceManager.GetString("BandPassFilterProcessor_HighCutoff_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 低频截止半径 的本地化字符串。
+ ///
+ public static string BandPassFilterProcessor_LowCutoff {
+ get {
+ return ResourceManager.GetString("BandPassFilterProcessor_LowCutoff", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 低于此频率的成分将被去除 的本地化字符串。
+ ///
+ public static string BandPassFilterProcessor_LowCutoff_Desc {
+ get {
+ return ResourceManager.GetString("BandPassFilterProcessor_LowCutoff_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 带通滤波器 的本地化字符串。
+ ///
+ public static string BandPassFilterProcessor_Name {
+ get {
+ return ResourceManager.GetString("BandPassFilterProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 巴特沃斯阶数 的本地化字符串。
+ ///
+ public static string BandPassFilterProcessor_Order {
+ get {
+ return ResourceManager.GetString("BandPassFilterProcessor_Order", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 巴特沃斯滤波器的阶数 的本地化字符串。
+ ///
+ public static string BandPassFilterProcessor_Order_Desc {
+ get {
+ return ResourceManager.GetString("BandPassFilterProcessor_Order_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 模糊核大小 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_BgaBlurSize {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_BgaBlurSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 BGA检测时的高斯模糊核大小(奇数) 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_BgaBlurSize_Desc {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_BgaBlurSize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最小圆度 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_BgaCircularity {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_BgaCircularity", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 过滤非圆形轮廓的最小圆度(0~1,1=完美圆形) 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_BgaCircularity_Desc {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_BgaCircularity_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 焊球最大面积 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_BgaMaxArea {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_BgaMaxArea", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 识别为BGA焊球的最大像素面积 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_BgaMaxArea_Desc {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_BgaMaxArea_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 焊球最小面积 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_BgaMinArea {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_BgaMinArea", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 识别为BGA焊球的最小像素面积 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_BgaMinArea_Desc {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_BgaMinArea_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 自动检测BGA焊球并测量空洞率(两步法:定位焊球 → 检测气泡) 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_Description {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最大阈值 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_MaxThreshold {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_MaxThreshold", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 气泡检测的最大灰度值 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_MaxThreshold_Desc {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_MaxThreshold_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最小阈值 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_MinThreshold {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_MinThreshold", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 气泡检测的最小灰度值(灰度在[最小,最大]范围内判为气泡) 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_MinThreshold_Desc {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_MinThreshold_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最小气泡面积 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_MinVoidArea {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_MinVoidArea", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 小于此面积的区域视为噪点忽略(像素) 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_MinVoidArea_Desc {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_MinVoidArea_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 BGA空洞率检测(自动) 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_Name {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 ROI模式 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_RoiMode {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_RoiMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 None: 全图检测; Polygon: 多边形ROI(需先绘制ROI) 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_RoiMode_Desc {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_RoiMode_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 线条粗细 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_Thickness {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_Thickness", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 轮廓线条粗细 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_Thickness_Desc {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_Thickness_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 气泡率限值 (%) 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_VoidLimit {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_VoidLimit", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最大允许气泡率(默认25%,参考IPC-7095) 的本地化字符串。
+ ///
+ public static string BgaVoidRateProcessor_VoidLimit_Desc {
+ get {
+ return ResourceManager.GetString("BgaVoidRateProcessor_VoidLimit_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 保持边缘清晰的平滑滤波器 的本地化字符串。
+ ///
+ public static string BilateralFilterProcessor_Description {
+ get {
+ return ResourceManager.GetString("BilateralFilterProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 直径 的本地化字符串。
+ ///
+ public static string BilateralFilterProcessor_Diameter {
+ get {
+ return ResourceManager.GetString("BilateralFilterProcessor_Diameter", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 每个像素邻域的直径 的本地化字符串。
+ ///
+ public static string BilateralFilterProcessor_Diameter_Desc {
+ get {
+ return ResourceManager.GetString("BilateralFilterProcessor_Diameter_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 双边滤波 的本地化字符串。
+ ///
+ public static string BilateralFilterProcessor_Name {
+ get {
+ return ResourceManager.GetString("BilateralFilterProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 颜色空间标准差 的本地化字符串。
+ ///
+ public static string BilateralFilterProcessor_SigmaColor {
+ get {
+ return ResourceManager.GetString("BilateralFilterProcessor_SigmaColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 颜色空间中的滤波器标准差 的本地化字符串。
+ ///
+ public static string BilateralFilterProcessor_SigmaColor_Desc {
+ get {
+ return ResourceManager.GetString("BilateralFilterProcessor_SigmaColor_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 坐标空间标准差 的本地化字符串。
+ ///
+ public static string BilateralFilterProcessor_SigmaSpace {
+ get {
+ return ResourceManager.GetString("BilateralFilterProcessor_SigmaSpace", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 坐标空间中的滤波器标准差 的本地化字符串。
+ ///
+ public static string BilateralFilterProcessor_SigmaSpace_Desc {
+ get {
+ return ResourceManager.GetString("BilateralFilterProcessor_SigmaSpace_Desc", resourceCulture);
+ }
+ }
+
///
/// 查找类似 添加 的本地化字符串。
///
@@ -169,110 +547,344 @@ namespace XP.Common.Resources {
}
///
- /// 查找类似 帧合并 的本地化字符串。
+ /// 查找类似 将灰度图像按亮度区间分为多个层级 的本地化字符串。
///
- public static string Detector_AvgFramesLabel {
+ public static string ColorLayerProcessor_Description {
get {
- return ResourceManager.GetString("Detector_AvgFramesLabel", resourceCulture);
+ return ResourceManager.GetString("ColorLayerProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 像素合并 的本地化字符串。
+ /// 查找类似 分层数 的本地化字符串。
///
- public static string Detector_BinningLabel {
+ public static string ColorLayerProcessor_Layers {
get {
- return ResourceManager.GetString("Detector_BinningLabel", resourceCulture);
+ return ResourceManager.GetString("ColorLayerProcessor_Layers", resourceCulture);
}
}
///
- /// 查找类似 探测器配置 的本地化字符串。
+ /// 查找类似 灰度分层数量(2-16) 的本地化字符串。
///
- public static string Detector_ConfigWindowTitle {
+ public static string ColorLayerProcessor_Layers_Desc {
get {
- return ResourceManager.GetString("Detector_ConfigWindowTitle", resourceCulture);
+ return ResourceManager.GetString("ColorLayerProcessor_Layers_Desc", resourceCulture);
}
}
///
- /// 查找类似 探测器连接失败 的本地化字符串。
+ /// 查找类似 分层方法 的本地化字符串。
///
- public static string Detector_ConnectFailed {
+ public static string ColorLayerProcessor_Method {
get {
- return ResourceManager.GetString("Detector_ConnectFailed", resourceCulture);
+ return ResourceManager.GetString("ColorLayerProcessor_Method", resourceCulture);
}
}
///
- /// 查找类似 探测器连接成功 的本地化字符串。
+ /// 查找类似 分层方法:Uniform(均匀等分)或 Otsu(自适应) 的本地化字符串。
///
- public static string Detector_ConnectSuccess {
+ public static string ColorLayerProcessor_Method_Desc {
get {
- return ResourceManager.GetString("Detector_ConnectSuccess", resourceCulture);
+ return ResourceManager.GetString("ColorLayerProcessor_Method_Desc", resourceCulture);
}
}
///
- /// 查找类似 暗场校正 的本地化字符串。
+ /// 查找类似 色彩分层 的本地化字符串。
///
- public static string Detector_DarkCorrectionButton {
+ public static string ColorLayerProcessor_Name {
get {
- return ResourceManager.GetString("Detector_DarkCorrectionButton", resourceCulture);
+ return ResourceManager.GetString("ColorLayerProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 探测器断开成功 的本地化字符串。
+ /// 查找类似 输出模式 的本地化字符串。
///
- public static string Detector_DisconnectSuccess {
+ public static string ColorLayerProcessor_OutputMode {
get {
- return ResourceManager.GetString("Detector_DisconnectSuccess", resourceCulture);
+ return ResourceManager.GetString("ColorLayerProcessor_OutputMode", resourceCulture);
}
}
///
- /// 查找类似 帧率 的本地化字符串。
+ /// 查找类似 输出映射:EqualSpaced(等间距灰度)或 MidValue(区间中值) 的本地化字符串。
///
- public static string Detector_FrameRateLabel {
+ public static string ColorLayerProcessor_OutputMode_Desc {
get {
- return ResourceManager.GetString("Detector_FrameRateLabel", resourceCulture);
+ return ResourceManager.GetString("ColorLayerProcessor_OutputMode_Desc", resourceCulture);
}
}
///
- /// 查找类似 亮场校正 的本地化字符串。
+ /// 查找类似 目标层 的本地化字符串。
///
- public static string Detector_LightCorrectionButton {
+ public static string ColorLayerProcessor_TargetLayer {
get {
- return ResourceManager.GetString("Detector_LightCorrectionButton", resourceCulture);
+ return ResourceManager.GetString("ColorLayerProcessor_TargetLayer", resourceCulture);
}
}
///
- /// 查找类似 灵敏度 的本地化字符串。
+ /// 查找类似 0 = 显示全部层,1~N = 只显示指定层(白色),其余为黑色 的本地化字符串。
///
- public static string Detector_SensitivityLabel {
+ public static string ColorLayerProcessor_TargetLayer_Desc {
get {
- return ResourceManager.GetString("Detector_SensitivityLabel", resourceCulture);
+ return ResourceManager.GetString("ColorLayerProcessor_TargetLayer_Desc", resourceCulture);
}
}
///
- /// 查找类似 采集中 的本地化字符串。
+ /// 查找类似 检测图像中的轮廓并输出轮廓信息 的本地化字符串。
///
- public static string Detector_Status_Acquiring {
+ public static string ContourProcessor_Description {
get {
- return ResourceManager.GetString("Detector_Status_Acquiring", resourceCulture);
+ return ResourceManager.GetString("ContourProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 探测器控制 的本地化字符串。
+ /// 查找类似 最大面积 的本地化字符串。
///
- public static string Detector_Title {
+ public static string ContourProcessor_MaxArea {
get {
- return ResourceManager.GetString("Detector_Title", resourceCulture);
+ return ResourceManager.GetString("ContourProcessor_MaxArea", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 过滤大于此面积的轮廓 的本地化字符串。
+ ///
+ public static string ContourProcessor_MaxArea_Desc {
+ get {
+ return ResourceManager.GetString("ContourProcessor_MaxArea_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最小面积 的本地化字符串。
+ ///
+ public static string ContourProcessor_MinArea {
+ get {
+ return ResourceManager.GetString("ContourProcessor_MinArea", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 过滤小于此面积的轮廓 的本地化字符串。
+ ///
+ public static string ContourProcessor_MinArea_Desc {
+ get {
+ return ResourceManager.GetString("ContourProcessor_MinArea_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 轮廓查找 的本地化字符串。
+ ///
+ public static string ContourProcessor_Name {
+ get {
+ return ResourceManager.GetString("ContourProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 目标颜色 的本地化字符串。
+ ///
+ public static string ContourProcessor_TargetColor {
+ get {
+ return ResourceManager.GetString("ContourProcessor_TargetColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 选择要查找的区域颜色(白色或黑色) 的本地化字符串。
+ ///
+ public static string ContourProcessor_TargetColor_Desc {
+ get {
+ return ResourceManager.GetString("ContourProcessor_TargetColor_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 线条粗细 的本地化字符串。
+ ///
+ public static string ContourProcessor_Thickness {
+ get {
+ return ResourceManager.GetString("ContourProcessor_Thickness", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 绘制轮廓的线条粗细 的本地化字符串。
+ ///
+ public static string ContourProcessor_Thickness_Desc {
+ get {
+ return ResourceManager.GetString("ContourProcessor_Thickness_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 阈值 的本地化字符串。
+ ///
+ public static string ContourProcessor_ThresholdValue {
+ get {
+ return ResourceManager.GetString("ContourProcessor_ThresholdValue", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 二值化的阈值(0-255) 的本地化字符串。
+ ///
+ public static string ContourProcessor_ThresholdValue_Desc {
+ get {
+ return ResourceManager.GetString("ContourProcessor_ThresholdValue_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 使用Otsu自动阈值 的本地化字符串。
+ ///
+ public static string ContourProcessor_UseOtsu {
+ get {
+ return ResourceManager.GetString("ContourProcessor_UseOtsu", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 自动计算最佳阈值 的本地化字符串。
+ ///
+ public static string ContourProcessor_UseOtsu_Desc {
+ get {
+ return ResourceManager.GetString("ContourProcessor_UseOtsu_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 启用阈值分割 的本地化字符串。
+ ///
+ public static string ContourProcessor_UseThreshold {
+ get {
+ return ResourceManager.GetString("ContourProcessor_UseThreshold", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 在查找轮廓前先进行二值化处理 的本地化字符串。
+ ///
+ public static string ContourProcessor_UseThreshold_Desc {
+ get {
+ return ResourceManager.GetString("ContourProcessor_UseThreshold_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 自动对比度 的本地化字符串。
+ ///
+ public static string ContrastProcessor_AutoContrast {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_AutoContrast", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 自动拉伸对比度到全范围 的本地化字符串。
+ ///
+ public static string ContrastProcessor_AutoContrast_Desc {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_AutoContrast_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Brightness 的本地化字符串。
+ ///
+ public static string ContrastProcessor_Brightness {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_Brightness", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Brightness offset 的本地化字符串。
+ ///
+ public static string ContrastProcessor_Brightness_Desc {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_Brightness_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 CLAHE裁剪限制 的本地化字符串。
+ ///
+ public static string ContrastProcessor_ClipLimit {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_ClipLimit", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 CLAHE的对比度限制阈值 的本地化字符串。
+ ///
+ public static string ContrastProcessor_ClipLimit_Desc {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_ClipLimit_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Contrast 的本地化字符串。
+ ///
+ public static string ContrastProcessor_Contrast {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_Contrast", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Contrast gain, 1.0 for original contrast 的本地化字符串。
+ ///
+ public static string ContrastProcessor_Contrast_Desc {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_Contrast_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Adjust image contrast and brightness 的本地化字符串。
+ ///
+ public static string ContrastProcessor_Description {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Contrast Adjustment 的本地化字符串。
+ ///
+ public static string ContrastProcessor_Name {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 使用CLAHE 的本地化字符串。
+ ///
+ public static string ContrastProcessor_UseCLAHE {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_UseCLAHE", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 使用限制对比度自适应直方图均衡化 的本地化字符串。
+ ///
+ public static string ContrastProcessor_UseCLAHE_Desc {
+ get {
+ return ResourceManager.GetString("ContrastProcessor_UseCLAHE_Desc", resourceCulture);
}
}
@@ -321,6 +933,1572 @@ namespace XP.Common.Resources {
}
}
+ ///
+ /// 查找类似 对图像进行差分运算,支持水平、垂直和对角线差分,可用于边缘检测 的本地化字符串。
+ ///
+ public static string DifferenceProcessor_Description {
+ get {
+ return ResourceManager.GetString("DifferenceProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 方向 的本地化字符串。
+ ///
+ public static string DifferenceProcessor_Direction {
+ get {
+ return ResourceManager.GetString("DifferenceProcessor_Direction", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 差分方向:Horizontal(水平)、Vertical(垂直)、Both(梯度幅值) 的本地化字符串。
+ ///
+ public static string DifferenceProcessor_Direction_Desc {
+ get {
+ return ResourceManager.GetString("DifferenceProcessor_Direction_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 差分运算 的本地化字符串。
+ ///
+ public static string DifferenceProcessor_Name {
+ get {
+ return ResourceManager.GetString("DifferenceProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 归一化输出 的本地化字符串。
+ ///
+ public static string DifferenceProcessor_Normalize {
+ get {
+ return ResourceManager.GetString("DifferenceProcessor_Normalize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 将结果归一化到0-255范围 的本地化字符串。
+ ///
+ public static string DifferenceProcessor_Normalize_Desc {
+ get {
+ return ResourceManager.GetString("DifferenceProcessor_Normalize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 对图像进行除法运算,可用于背景校正和归一化 的本地化字符串。
+ ///
+ public static string DivisionProcessor_Description {
+ get {
+ return ResourceManager.GetString("DivisionProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 除数 的本地化字符串。
+ ///
+ public static string DivisionProcessor_Divisor {
+ get {
+ return ResourceManager.GetString("DivisionProcessor_Divisor", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 图像每个像素值将除以此数值 的本地化字符串。
+ ///
+ public static string DivisionProcessor_Divisor_Desc {
+ get {
+ return ResourceManager.GetString("DivisionProcessor_Divisor_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 除法运算 的本地化字符串。
+ ///
+ public static string DivisionProcessor_Name {
+ get {
+ return ResourceManager.GetString("DivisionProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 归一化输出 的本地化字符串。
+ ///
+ public static string DivisionProcessor_Normalize {
+ get {
+ return ResourceManager.GetString("DivisionProcessor_Normalize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 将结果归一化到0-255范围 的本地化字符串。
+ ///
+ public static string DivisionProcessor_Normalize_Desc {
+ get {
+ return ResourceManager.GetString("DivisionProcessor_Normalize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 缩放因子 的本地化字符串。
+ ///
+ public static string DivisionProcessor_Scale {
+ get {
+ return ResourceManager.GetString("DivisionProcessor_Scale", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 除法结果乘以此缩放因子 的本地化字符串。
+ ///
+ public static string DivisionProcessor_Scale_Desc {
+ get {
+ return ResourceManager.GetString("DivisionProcessor_Scale_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 基于轮廓分析和椭圆拟合检测图像中的椭圆 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_Description {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最大面积 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MaxArea {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MaxArea", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 过滤大于此面积的椭圆 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MaxArea_Desc {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MaxArea_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最大离心率 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MaxEccentricity {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MaxEccentricity", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最大离心率(0=圆,接近1=扁椭圆) 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MaxEccentricity_Desc {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MaxEccentricity_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最大拟合误差 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MaxFitError {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MaxFitError", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最大拟合误差(像素) 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MaxFitError_Desc {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MaxFitError_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最大阈值 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MaxThreshold {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MaxThreshold", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 双阈值分割的最大阈值(0-255) 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MaxThreshold_Desc {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MaxThreshold_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最小面积 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MinArea {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MinArea", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 过滤小于此面积的椭圆 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MinArea_Desc {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MinArea_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最小轮廓点数 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MinContourPoints {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MinContourPoints", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 椭圆拟合所需的最小轮廓点数 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MinContourPoints_Desc {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MinContourPoints_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最小阈值 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MinThreshold {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MinThreshold", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 双阈值分割的最小阈值(0-255) 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_MinThreshold_Desc {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_MinThreshold_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 椭圆检测 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_Name {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 线条粗细 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_Thickness {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_Thickness", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 绘制椭圆的线条粗细 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_Thickness_Desc {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_Thickness_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 使用Otsu自动阈值 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_UseOtsu {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_UseOtsu", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 启用后将自动计算最佳阈值 的本地化字符串。
+ ///
+ public static string EllipseDetectionProcessor_UseOtsu_Desc {
+ get {
+ return ResourceManager.GetString("EllipseDetectionProcessor_UseOtsu_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 原图混合比 的本地化字符串。
+ ///
+ public static string EmbossProcessor_BlendRatio {
+ get {
+ return ResourceManager.GetString("EmbossProcessor_BlendRatio", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 与原图的混合比例(0=纯浮雕,1=纯原图) 的本地化字符串。
+ ///
+ public static string EmbossProcessor_BlendRatio_Desc {
+ get {
+ return ResourceManager.GetString("EmbossProcessor_BlendRatio_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 浮雕效果模拟3D浮雕,增强表面结构的可视化 的本地化字符串。
+ ///
+ public static string EmbossProcessor_Description {
+ get {
+ return ResourceManager.GetString("EmbossProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 光照方向 的本地化字符串。
+ ///
+ public static string EmbossProcessor_Direction {
+ get {
+ return ResourceManager.GetString("EmbossProcessor_Direction", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 模拟光源方向 的本地化字符串。
+ ///
+ public static string EmbossProcessor_Direction_Desc {
+ get {
+ return ResourceManager.GetString("EmbossProcessor_Direction_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 灰度偏移 的本地化字符串。
+ ///
+ public static string EmbossProcessor_GrayOffset {
+ get {
+ return ResourceManager.GetString("EmbossProcessor_GrayOffset", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 平坦区域的灰度基底(128=中灰) 的本地化字符串。
+ ///
+ public static string EmbossProcessor_GrayOffset_Desc {
+ get {
+ return ResourceManager.GetString("EmbossProcessor_GrayOffset_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 浮雕伪3D 的本地化字符串。
+ ///
+ public static string EmbossProcessor_Name {
+ get {
+ return ResourceManager.GetString("EmbossProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 浮雕深度 的本地化字符串。
+ ///
+ public static string EmbossProcessor_Strength {
+ get {
+ return ResourceManager.GetString("EmbossProcessor_Strength", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 浮雕效果的深度(越大浮雕感越强) 的本地化字符串。
+ ///
+ public static string EmbossProcessor_Strength_Desc {
+ get {
+ return ResourceManager.GetString("EmbossProcessor_Strength_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 基于四椭圆倾斜投影几何法测量通孔填锡率 的本地化字符串。
+ ///
+ public static string FillRateProcessor_Description {
+ get {
+ return ResourceManager.GetString("FillRateProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 通孔填锡率 的本地化字符串。
+ ///
+ public static string FillRateProcessor_Name {
+ get {
+ return ResourceManager.GetString("FillRateProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 线条粗细 的本地化字符串。
+ ///
+ public static string FillRateProcessor_Thickness {
+ get {
+ return ResourceManager.GetString("FillRateProcessor_Thickness", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 ROI椭圆线条粗细 的本地化字符串。
+ ///
+ public static string FillRateProcessor_Thickness_Desc {
+ get {
+ return ResourceManager.GetString("FillRateProcessor_Thickness_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 THT 限值 (%) 的本地化字符串。
+ ///
+ public static string FillRateProcessor_THTLimit {
+ get {
+ return ResourceManager.GetString("FillRateProcessor_THTLimit", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最低合格填锡率(默认75%,参考IPC-610) 的本地化字符串。
+ ///
+ public static string FillRateProcessor_THTLimit_Desc {
+ get {
+ return ResourceManager.GetString("FillRateProcessor_THTLimit_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 特性曲线 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_Curve {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_Curve", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 胶片特性曲线:Linear(线性)、Sigmoid(S曲线)、Logarithmic(对数)、Exponential(指数) 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_Curve_Desc {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_Curve_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 曲线强度 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_CurveStrength {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_CurveStrength", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 特性曲线的效果强度 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_CurveStrength_Desc {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_CurveStrength_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 模拟传统X射线胶片显示效果,支持窗宽窗位和特性曲线调整 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_Description {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 边缘增强 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_EdgeEnhance {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_EdgeEnhance", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 边缘增强强度,模拟胶片锐化效果,0为关闭 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_EdgeEnhance_Desc {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_EdgeEnhance_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 反转(负片) 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_Invert {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_Invert", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 反转图像为负片效果 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_Invert_Desc {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_Invert_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 电子胶片效果 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_Name {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 窗位 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_WindowCenter {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_WindowCenter", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 显示窗口的中心灰度值(Window Level) 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_WindowCenter_Desc {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_WindowCenter_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 窗宽 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_WindowWidth {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_WindowWidth", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 显示窗口的宽度,控制可见灰度范围 的本地化字符串。
+ ///
+ public static string FilmEffectProcessor_WindowWidth_Desc {
+ get {
+ return ResourceManager.GetString("FilmEffectProcessor_WindowWidth_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 频率范围 的本地化字符串。
+ ///
+ public static string FilterProcessor_BandPass_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_BandPass_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 带通滤波器 的本地化字符串。
+ ///
+ public static string FilterProcessor_BandPass_Name {
+ get {
+ return ResourceManager.GetString("FilterProcessor_BandPass_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 类型 的本地化字符串。
+ ///
+ public static string FilterProcessor_BandPassFilterType {
+ get {
+ return ResourceManager.GetString("FilterProcessor_BandPassFilterType", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 过镀特性 的本地化字符串。
+ ///
+ public static string FilterProcessor_BandPassFilterType_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_BandPassFilterType_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 边缘保持平滑滤波器 的本地化字符串。
+ ///
+ public static string FilterProcessor_Bilateral_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Bilateral_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 双边滤波器 的本地化字符串。
+ ///
+ public static string FilterProcessor_Bilateral_Name {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Bilateral_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 截止频率 的本地化字符串。
+ ///
+ public static string FilterProcessor_D0 {
+ get {
+ return ResourceManager.GetString("FilterProcessor_D0", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 频域滤波的截止频率 的本地化字符串。
+ ///
+ public static string FilterProcessor_D0_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_D0_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 集成多种滤波方法 的本地化字符串。
+ ///
+ public static string FilterProcessor_Description {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 类型 的本地化字符串。
+ ///
+ public static string FilterProcessor_FilterType {
+ get {
+ return ResourceManager.GetString("FilterProcessor_FilterType", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 选择滤波方式 的本地化字符串。
+ ///
+ public static string FilterProcessor_FilterType_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_FilterType_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 在保留边缘细节的同时平滑图像并降低高斯噪声 的本地化字符串。
+ ///
+ public static string FilterProcessor_Gaussian_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Gaussian_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高斯滤波器 的本地化字符串。
+ ///
+ public static string FilterProcessor_Gaussian_Name {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Gaussian_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高截止半径 的本地化字符串。
+ ///
+ public static string FilterProcessor_HighCutoff {
+ get {
+ return ResourceManager.GetString("FilterProcessor_HighCutoff", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高于此频率的分量将被移除 的本地化字符串。
+ ///
+ public static string FilterProcessor_HighCutoff_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_HighCutoff_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 频域边缘增强 的本地化字符串。
+ ///
+ public static string FilterProcessor_HighPass_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_HighPass_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高通滤波器 的本地化字符串。
+ ///
+ public static string FilterProcessor_HighPass_Name {
+ get {
+ return ResourceManager.GetString("FilterProcessor_HighPass_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 核大小 的本地化字符串。
+ ///
+ public static string FilterProcessor_KernelSize {
+ get {
+ return ResourceManager.GetString("FilterProcessor_KernelSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 滤波器卷积核大小(必须为奇数) 的本地化字符串。
+ ///
+ public static string FilterProcessor_KernelSize_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_KernelSize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 低截止半径 的本地化字符串。
+ ///
+ public static string FilterProcessor_LowCutoff {
+ get {
+ return ResourceManager.GetString("FilterProcessor_LowCutoff", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 低于该频率的分量将被移除 的本地化字符串。
+ ///
+ public static string FilterProcessor_LowCutoff_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_LowCutoff_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 在频域中去除高频噪声 的本地化字符串。
+ ///
+ public static string FilterProcessor_LowPass_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_LowPass_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 低通滤波器 的本地化字符串。
+ ///
+ public static string FilterProcessor_LowPass_Name {
+ get {
+ return ResourceManager.GetString("FilterProcessor_LowPass_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 简单平均平滑滤波器 的本地化字符串。
+ ///
+ public static string FilterProcessor_Mean_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Mean_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 均值滤波器 的本地化字符串。
+ ///
+ public static string FilterProcessor_Mean_Name {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Mean_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 有效去除椒盐噪声 的本地化字符串。
+ ///
+ public static string FilterProcessor_Median_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Median_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 中值滤波器 的本地化字符串。
+ ///
+ public static string FilterProcessor_Median_Name {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Median_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 综合筛选器 的本地化字符串。
+ ///
+ public static string FilterProcessor_Name {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 巴特沃斯阶数 的本地化字符串。
+ ///
+ public static string FilterProcessor_Order {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Order", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 巴特沃斯滤波器阶数 的本地化字符串。
+ ///
+ public static string FilterProcessor_Order_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Order_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Sigma 的本地化字符串。
+ ///
+ public static string FilterProcessor_Sigma {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Sigma", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高斯 / 双边滤波器的标准差 的本地化字符串。
+ ///
+ public static string FilterProcessor_Sigma_Desc {
+ get {
+ return ResourceManager.GetString("FilterProcessor_Sigma_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 通过Gamma值调节图像的亮暗程度 的本地化字符串。
+ ///
+ public static string GammaProcessor_Description {
+ get {
+ return ResourceManager.GetString("GammaProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 增益 的本地化字符串。
+ ///
+ public static string GammaProcessor_Gain {
+ get {
+ return ResourceManager.GetString("GammaProcessor_Gain", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 输出增益系数 的本地化字符串。
+ ///
+ public static string GammaProcessor_Gain_Desc {
+ get {
+ return ResourceManager.GetString("GammaProcessor_Gain_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Gamma值 的本地化字符串。
+ ///
+ public static string GammaProcessor_Gamma {
+ get {
+ return ResourceManager.GetString("GammaProcessor_Gamma", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Gamma值,小于1图像变暗,大于1图像变亮 的本地化字符串。
+ ///
+ public static string GammaProcessor_Gamma_Desc {
+ get {
+ return ResourceManager.GetString("GammaProcessor_Gamma_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Gamma校正 的本地化字符串。
+ ///
+ public static string GammaProcessor_Name {
+ get {
+ return ResourceManager.GetString("GammaProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 使用高斯核对图像进行平滑处理 的本地化字符串。
+ ///
+ public static string GaussianBlurProcessor_Description {
+ get {
+ return ResourceManager.GetString("GaussianBlurProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 核大小 的本地化字符串。
+ ///
+ public static string GaussianBlurProcessor_KernelSize {
+ get {
+ return ResourceManager.GetString("GaussianBlurProcessor_KernelSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高斯核的大小,必须为奇数 的本地化字符串。
+ ///
+ public static string GaussianBlurProcessor_KernelSize_Desc {
+ get {
+ return ResourceManager.GetString("GaussianBlurProcessor_KernelSize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高斯模糊 的本地化字符串。
+ ///
+ public static string GaussianBlurProcessor_Name {
+ get {
+ return ResourceManager.GetString("GaussianBlurProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 标准差 的本地化字符串。
+ ///
+ public static string GaussianBlurProcessor_Sigma {
+ get {
+ return ResourceManager.GetString("GaussianBlurProcessor_Sigma", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高斯核的标准差,控制模糊程度 的本地化字符串。
+ ///
+ public static string GaussianBlurProcessor_Sigma_Desc {
+ get {
+ return ResourceManager.GetString("GaussianBlurProcessor_Sigma_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 将图像转换为灰度图 的本地化字符串。
+ ///
+ public static string GrayscaleProcessor_Description {
+ get {
+ return ResourceManager.GetString("GrayscaleProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 转换方法 的本地化字符串。
+ ///
+ public static string GrayscaleProcessor_Method {
+ get {
+ return ResourceManager.GetString("GrayscaleProcessor_Method", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 灰度转换的方法 的本地化字符串。
+ ///
+ public static string GrayscaleProcessor_Method_Desc {
+ get {
+ return ResourceManager.GetString("GrayscaleProcessor_Method_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 灰度转换 的本地化字符串。
+ ///
+ public static string GrayscaleProcessor_Name {
+ get {
+ return ResourceManager.GetString("GrayscaleProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 偏置 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_Bias {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_Bias", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 自适应对数映射和Drago映射的偏置参数,控制暗部/亮部平衡 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_Bias_Desc {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_Bias_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 基于色调映射的高动态范围图像增强 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_Description {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 细节增强 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_DetailBoost {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_DetailBoost", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 细节增强系数,值越大细节越丰富 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_DetailBoost_Desc {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_DetailBoost_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Gamma值 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_Gamma {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_Gamma", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Gamma校正值,用于调整输出亮度 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_Gamma_Desc {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_Gamma_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 色调映射方法 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_Method {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_Method", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 选择HDR色调映射算法:局部色调映射、自适应对数映射、Drago映射、双边滤波色调映射 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_Method_Desc {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_Method_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高动态范围增强 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_Name {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 饱和度 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_Saturation {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_Saturation", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 对比度饱和系数,用于局部色调映射方法 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_Saturation_Desc {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_Saturation_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 颜色标准差 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_SigmaColor {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_SigmaColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 双边滤波色调映射的颜色标准差,控制保边效果 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_SigmaColor_Desc {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_SigmaColor_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 空间标准差 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_SigmaSpace {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_SigmaSpace", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 基础层提取的空间标准差,控制平滑范围 的本地化字符串。
+ ///
+ public static string HDREnhancementProcessor_SigmaSpace_Desc {
+ get {
+ return ResourceManager.GetString("HDREnhancementProcessor_SigmaSpace_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 基础层增益 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_BaseGain {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_BaseGain", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 基础层(最低频)增益,控制整体亮度 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_BaseGain_Desc {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_BaseGain_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 裁剪限制 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_ClipLimit {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_ClipLimit", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 限制细节幅度,防止过增强产生伪影。0=不限制 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_ClipLimit_Desc {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_ClipLimit_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 粗糙细节增益 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_CoarseGain {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_CoarseGain", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 粗尺度细节(大结构)的增益。1.0=原始,>1=增强,<1=抑制 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_CoarseGain_Desc {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_CoarseGain_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 基于拉普拉斯金字塔分解,对不同尺度的图像细节独立增强 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_Description {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 精细细节增益 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_FineGain {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_FineGain", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最精细层(边缘、纹理)的增益。1.0=原始,>1=增强,<1=抑制 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_FineGain_Desc {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_FineGain_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 金字塔层数 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_Levels {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_Levels", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 金字塔分解层数(2-8),层数越多分解越精细 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_Levels_Desc {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_Levels_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 中等细节增益 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_MediumGain {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_MediumGain", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 中等尺度细节的增益。1.0=原始,>1=增强,<1=抑制 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_MediumGain_Desc {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_MediumGain_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 层次增强 的本地化字符串。
+ ///
+ public static string HierarchicalEnhancementProcessor_Name {
+ get {
+ return ResourceManager.GetString("HierarchicalEnhancementProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 截止频率 的本地化字符串。
+ ///
+ public static string HighPassFilterProcessor_CutoffFrequency {
+ get {
+ return ResourceManager.GetString("HighPassFilterProcessor_CutoffFrequency", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高通滤波器的截止频率 的本地化字符串。
+ ///
+ public static string HighPassFilterProcessor_CutoffFrequency_Desc {
+ get {
+ return ResourceManager.GetString("HighPassFilterProcessor_CutoffFrequency_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 在频域中进行边缘增强 的本地化字符串。
+ ///
+ public static string HighPassFilterProcessor_Description {
+ get {
+ return ResourceManager.GetString("HighPassFilterProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高通滤波 的本地化字符串。
+ ///
+ public static string HighPassFilterProcessor_Name {
+ get {
+ return ResourceManager.GetString("HighPassFilterProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 裁剪限制 的本地化字符串。
+ ///
+ public static string HistogramEqualizationProcessor_ClipLimit {
+ get {
+ return ResourceManager.GetString("HistogramEqualizationProcessor_ClipLimit", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 CLAHE的对比度限制阈值 的本地化字符串。
+ ///
+ public static string HistogramEqualizationProcessor_ClipLimit_Desc {
+ get {
+ return ResourceManager.GetString("HistogramEqualizationProcessor_ClipLimit_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 增强图像对比度 的本地化字符串。
+ ///
+ public static string HistogramEqualizationProcessor_Description {
+ get {
+ return ResourceManager.GetString("HistogramEqualizationProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 均衡化方法 的本地化字符串。
+ ///
+ public static string HistogramEqualizationProcessor_Method {
+ get {
+ return ResourceManager.GetString("HistogramEqualizationProcessor_Method", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 选择直方图均衡化算法 的本地化字符串。
+ ///
+ public static string HistogramEqualizationProcessor_Method_Desc {
+ get {
+ return ResourceManager.GetString("HistogramEqualizationProcessor_Method_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 直方图均衡化 的本地化字符串。
+ ///
+ public static string HistogramEqualizationProcessor_Name {
+ get {
+ return ResourceManager.GetString("HistogramEqualizationProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 分块大小 的本地化字符串。
+ ///
+ public static string HistogramEqualizationProcessor_TileSize {
+ get {
+ return ResourceManager.GetString("HistogramEqualizationProcessor_TileSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 CLAHE的分块大小 的本地化字符串。
+ ///
+ public static string HistogramEqualizationProcessor_TileSize_Desc {
+ get {
+ return ResourceManager.GetString("HistogramEqualizationProcessor_TileSize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 计算灰度直方图,以蓝色柱状图叠加到图像左上角,并输出统计表格 的本地化字符串。
+ ///
+ public static string HistogramOverlayProcessor_Description {
+ get {
+ return ResourceManager.GetString("HistogramOverlayProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 直方图叠加 的本地化字符串。
+ ///
+ public static string HistogramOverlayProcessor_Name {
+ get {
+ return ResourceManager.GetString("HistogramOverlayProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 专门检测水平方向的边缘 的本地化字符串。
+ ///
+ public static string HorizontalEdgeProcessor_Description {
+ get {
+ return ResourceManager.GetString("HorizontalEdgeProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 检测方法 的本地化字符串。
+ ///
+ public static string HorizontalEdgeProcessor_Method {
+ get {
+ return ResourceManager.GetString("HorizontalEdgeProcessor_Method", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 选择水平边缘检测算法 的本地化字符串。
+ ///
+ public static string HorizontalEdgeProcessor_Method_Desc {
+ get {
+ return ResourceManager.GetString("HorizontalEdgeProcessor_Method_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 水平边缘检测 的本地化字符串。
+ ///
+ public static string HorizontalEdgeProcessor_Name {
+ get {
+ return ResourceManager.GetString("HorizontalEdgeProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 灵敏度 的本地化字符串。
+ ///
+ public static string HorizontalEdgeProcessor_Sensitivity {
+ get {
+ return ResourceManager.GetString("HorizontalEdgeProcessor_Sensitivity", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 边缘检测的灵敏度 的本地化字符串。
+ ///
+ public static string HorizontalEdgeProcessor_Sensitivity_Desc {
+ get {
+ return ResourceManager.GetString("HorizontalEdgeProcessor_Sensitivity_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 阈值 的本地化字符串。
+ ///
+ public static string HorizontalEdgeProcessor_Threshold {
+ get {
+ return ResourceManager.GetString("HorizontalEdgeProcessor_Threshold", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 边缘检测阈值 的本地化字符串。
+ ///
+ public static string HorizontalEdgeProcessor_Threshold_Desc {
+ get {
+ return ResourceManager.GetString("HorizontalEdgeProcessor_Threshold_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 计算积分图像(累加和),用于快速区域求和 的本地化字符串。
+ ///
+ public static string IntegralProcessor_Description {
+ get {
+ return ResourceManager.GetString("IntegralProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 积分运算 的本地化字符串。
+ ///
+ public static string IntegralProcessor_Name {
+ get {
+ return ResourceManager.GetString("IntegralProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 归一化输出 的本地化字符串。
+ ///
+ public static string IntegralProcessor_Normalize {
+ get {
+ return ResourceManager.GetString("IntegralProcessor_Normalize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 将结果归一化到0-255范围 的本地化字符串。
+ ///
+ public static string IntegralProcessor_Normalize_Desc {
+ get {
+ return ResourceManager.GetString("IntegralProcessor_Normalize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 使用Kirsch算子检测图像边缘 的本地化字符串。
+ ///
+ public static string KirschEdgeProcessor_Description {
+ get {
+ return ResourceManager.GetString("KirschEdgeProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Kirsch边缘检测 的本地化字符串。
+ ///
+ public static string KirschEdgeProcessor_Name {
+ get {
+ return ResourceManager.GetString("KirschEdgeProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 缩放系数 的本地化字符串。
+ ///
+ public static string KirschEdgeProcessor_Scale {
+ get {
+ return ResourceManager.GetString("KirschEdgeProcessor_Scale", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 边缘强度的缩放系数 的本地化字符串。
+ ///
+ public static string KirschEdgeProcessor_Scale_Desc {
+ get {
+ return ResourceManager.GetString("KirschEdgeProcessor_Scale_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 阈值 的本地化字符串。
+ ///
+ public static string KirschEdgeProcessor_Threshold {
+ get {
+ return ResourceManager.GetString("KirschEdgeProcessor_Threshold", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 边缘检测阈值 的本地化字符串。
+ ///
+ public static string KirschEdgeProcessor_Threshold_Desc {
+ get {
+ return ResourceManager.GetString("KirschEdgeProcessor_Threshold_Desc", resourceCulture);
+ }
+ }
+
///
/// 查找类似 English 的本地化字符串。
///
@@ -348,6 +2526,393 @@ namespace XP.Common.Resources {
}
}
+ ///
+ /// 查找类似 测量图像中两点之间的距离 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_Description {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 直线测量 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_Name {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 像素尺寸 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_PixelSize {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_PixelSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 每像素对应的物理尺寸,用于标定测量 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_PixelSize_Desc {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_PixelSize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 显示标注 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_ShowLabel {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_ShowLabel", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 在测量线上显示距离标注 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_ShowLabel_Desc {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_ShowLabel_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 线条粗细 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_Thickness {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_Thickness", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 测量线的线条粗细 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_Thickness_Desc {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_Thickness_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 单位 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_Unit {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_Unit", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 测量单位:px(像素)、mm、μm、cm 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_Unit_Desc {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_Unit_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 点1 X坐标 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_X1 {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_X1", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 第一个点的X坐标(像素) 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_X1_Desc {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_X1_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 点2 X坐标 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_X2 {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_X2", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 第二个点的X坐标(像素) 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_X2_Desc {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_X2_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 点1 Y坐标 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_Y1 {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_Y1", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 第一个点的Y坐标(像素) 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_Y1_Desc {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_Y1_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 点2 Y坐标 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_Y2 {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_Y2", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 第二个点的Y坐标(像素) 的本地化字符串。
+ ///
+ public static string LineMeasurementProcessor_Y2_Desc {
+ get {
+ return ResourceManager.GetString("LineMeasurementProcessor_Y2_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 自动滚动 的本地化字符串。
+ ///
+ public static string LogViewer_AutoScroll {
+ get {
+ return ResourceManager.GetString("LogViewer_AutoScroll", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 清空日志 的本地化字符串。
+ ///
+ public static string LogViewer_ClearLog {
+ get {
+ return ResourceManager.GetString("LogViewer_ClearLog", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 级别 的本地化字符串。
+ ///
+ public static string LogViewer_ColLevel {
+ get {
+ return ResourceManager.GetString("LogViewer_ColLevel", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 消息 的本地化字符串。
+ ///
+ public static string LogViewer_ColMessage {
+ get {
+ return ResourceManager.GetString("LogViewer_ColMessage", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 来源 的本地化字符串。
+ ///
+ public static string LogViewer_ColSource {
+ get {
+ return ResourceManager.GetString("LogViewer_ColSource", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 时间 的本地化字符串。
+ ///
+ public static string LogViewer_ColTime {
+ get {
+ return ResourceManager.GetString("LogViewer_ColTime", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 过滤: 的本地化字符串。
+ ///
+ public static string LogViewer_Filter {
+ get {
+ return ResourceManager.GetString("LogViewer_Filter", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 输入关键词过滤日志... 的本地化字符串。
+ ///
+ public static string LogViewer_FilterWatermark {
+ get {
+ return ResourceManager.GetString("LogViewer_FilterWatermark", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 级别筛选: 的本地化字符串。
+ ///
+ public static string LogViewer_LevelFilter {
+ get {
+ return ResourceManager.GetString("LogViewer_LevelFilter", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最大行数: 的本地化字符串。
+ ///
+ public static string LogViewer_MaxLines {
+ get {
+ return ResourceManager.GetString("LogViewer_MaxLines", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 共 {0} 条日志,过滤后 {1} 条 的本地化字符串。
+ ///
+ public static string LogViewer_StatusFiltered {
+ get {
+ return ResourceManager.GetString("LogViewer_StatusFiltered", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 共 {0} 条日志 的本地化字符串。
+ ///
+ public static string LogViewer_StatusTotal {
+ get {
+ return ResourceManager.GetString("LogViewer_StatusTotal", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 实时日志查看器 的本地化字符串。
+ ///
+ public static string LogViewer_Title {
+ get {
+ return ResourceManager.GetString("LogViewer_Title", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 截止频率 的本地化字符串。
+ ///
+ public static string LowPassFilterProcessor_CutoffFrequency {
+ get {
+ return ResourceManager.GetString("LowPassFilterProcessor_CutoffFrequency", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 低通滤波器的截止频率 的本地化字符串。
+ ///
+ public static string LowPassFilterProcessor_CutoffFrequency_Desc {
+ get {
+ return ResourceManager.GetString("LowPassFilterProcessor_CutoffFrequency_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 在频域中去除高频噪声 的本地化字符串。
+ ///
+ public static string LowPassFilterProcessor_Description {
+ get {
+ return ResourceManager.GetString("LowPassFilterProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 低通滤波 的本地化字符串。
+ ///
+ public static string LowPassFilterProcessor_Name {
+ get {
+ return ResourceManager.GetString("LowPassFilterProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 简单的平均平滑滤波器 的本地化字符串。
+ ///
+ public static string MeanFilterProcessor_Description {
+ get {
+ return ResourceManager.GetString("MeanFilterProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 核大小 的本地化字符串。
+ ///
+ public static string MeanFilterProcessor_KernelSize {
+ get {
+ return ResourceManager.GetString("MeanFilterProcessor_KernelSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 滤波器核的大小(必须为奇数) 的本地化字符串。
+ ///
+ public static string MeanFilterProcessor_KernelSize_Desc {
+ get {
+ return ResourceManager.GetString("MeanFilterProcessor_KernelSize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 均值滤波 的本地化字符串。
+ ///
+ public static string MeanFilterProcessor_Name {
+ get {
+ return ResourceManager.GetString("MeanFilterProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 有效去除椒盐噪声 的本地化字符串。
+ ///
+ public static string MedianFilterProcessor_Description {
+ get {
+ return ResourceManager.GetString("MedianFilterProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 核大小 的本地化字符串。
+ ///
+ public static string MedianFilterProcessor_KernelSize {
+ get {
+ return ResourceManager.GetString("MedianFilterProcessor_KernelSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 滤波器核的大小(必须为奇数) 的本地化字符串。
+ ///
+ public static string MedianFilterProcessor_KernelSize_Desc {
+ get {
+ return ResourceManager.GetString("MedianFilterProcessor_KernelSize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 中值滤波 的本地化字符串。
+ ///
+ public static string MedianFilterProcessor_Name {
+ get {
+ return ResourceManager.GetString("MedianFilterProcessor_Name", resourceCulture);
+ }
+ }
+
///
/// 查找类似 关于 的本地化字符串。
///
@@ -475,878 +3040,704 @@ namespace XP.Common.Resources {
}
///
- /// 查找类似 PLC 连接失败 的本地化字符串。
+ /// 查找类似 对图像进行水平、垂直或对角镜像翻转 的本地化字符串。
///
- public static string PLC_ConnectFailed {
+ public static string MirrorProcessor_Description {
get {
- return ResourceManager.GetString("PLC_ConnectFailed", resourceCulture);
+ return ResourceManager.GetString("MirrorProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 PLC 连接成功 的本地化字符串。
+ /// 查找类似 翻转方向 的本地化字符串。
///
- public static string PLC_ConnectSuccess {
+ public static string MirrorProcessor_Direction {
get {
- return ResourceManager.GetString("PLC_ConnectSuccess", resourceCulture);
+ return ResourceManager.GetString("MirrorProcessor_Direction", resourceCulture);
}
}
///
- /// 查找类似 PLC 断开成功 的本地化字符串。
+ /// 查找类似 翻转方向:Horizontal(水平/左右翻转)、Vertical(垂直/上下翻转)、Both(对角翻转/旋转180°) 的本地化字符串。
///
- public static string PLC_DisconnectSuccess {
+ public static string MirrorProcessor_Direction_Desc {
get {
- return ResourceManager.GetString("PLC_DisconnectSuccess", resourceCulture);
+ return ResourceManager.GetString("MirrorProcessor_Direction_Desc", resourceCulture);
}
}
///
- /// 查找类似 变量读取成功 的本地化字符串。
+ /// 查找类似 镜像 的本地化字符串。
///
- public static string PLC_ReadVariableSuccess {
+ public static string MirrorProcessor_Name {
get {
- return ResourceManager.GetString("PLC_ReadVariableSuccess", resourceCulture);
+ return ResourceManager.GetString("MirrorProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 PLC 控制 的本地化字符串。
+ /// 查找类似 执行形态学操作(腐蚀、膨胀、开运算、闭运算) 的本地化字符串。
///
- public static string PLC_Title {
+ public static string MorphologyProcessor_Description {
get {
- return ResourceManager.GetString("PLC_Title", resourceCulture);
+ return ResourceManager.GetString("MorphologyProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 变量写入成功 的本地化字符串。
+ /// 查找类似 迭代次数 的本地化字符串。
///
- public static string PLC_WriteVariableSuccess {
+ public static string MorphologyProcessor_Iterations {
get {
- return ResourceManager.GetString("PLC_WriteVariableSuccess", resourceCulture);
+ return ResourceManager.GetString("MorphologyProcessor_Iterations", resourceCulture);
}
}
///
- /// 查找类似 实际 {0} 的本地化字符串。
+ /// 查找类似 形态学操作重复执行的次数 的本地化字符串。
///
- public static string RaySource_ActualValueLabel {
+ public static string MorphologyProcessor_Iterations_Desc {
get {
- return ResourceManager.GetString("RaySource_ActualValueLabel", resourceCulture);
+ return ResourceManager.GetString("MorphologyProcessor_Iterations_Desc", resourceCulture);
}
}
///
- /// 查找类似 高级 的本地化字符串。
+ /// 查找类似 核大小 的本地化字符串。
///
- public static string RaySource_AdvanceButton {
+ public static string MorphologyProcessor_KernelSize {
get {
- return ResourceManager.GetString("RaySource_AdvanceButton", resourceCulture);
+ return ResourceManager.GetString("MorphologyProcessor_KernelSize", resourceCulture);
}
}
///
- /// 查找类似 是否确认执行全部电压自动定心操作? 的本地化字符串。
+ /// 查找类似 结构元素的大小 的本地化字符串。
///
- public static string RaySource_AutoCenter_Confirm {
+ public static string MorphologyProcessor_KernelSize_Desc {
get {
- return ResourceManager.GetString("RaySource_AutoCenter_Confirm", resourceCulture);
+ return ResourceManager.GetString("MorphologyProcessor_KernelSize_Desc", resourceCulture);
}
}
///
- /// 查找类似 正在执行全部电压自动定心操作,请稍候... 的本地化字符串。
+ /// 查找类似 形态学处理 的本地化字符串。
///
- public static string RaySource_AutoCenter_Message {
+ public static string MorphologyProcessor_Name {
get {
- return ResourceManager.GetString("RaySource_AutoCenter_Message", resourceCulture);
+ return ResourceManager.GetString("MorphologyProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 自动定心 的本地化字符串。
+ /// 查找类似 操作类型 的本地化字符串。
///
- public static string RaySource_AutoCenter_Title {
+ public static string MorphologyProcessor_Operation {
get {
- return ResourceManager.GetString("RaySource_AutoCenter_Title", resourceCulture);
+ return ResourceManager.GetString("MorphologyProcessor_Operation", resourceCulture);
}
}
///
- /// 查找类似 自动定心: 的本地化字符串。
+ /// 查找类似 选择形态学操作类型 的本地化字符串。
///
- public static string RaySource_AutoCenterLabel {
+ public static string MorphologyProcessor_Operation_Desc {
get {
- return ResourceManager.GetString("RaySource_AutoCenterLabel", resourceCulture);
+ return ResourceManager.GetString("MorphologyProcessor_Operation_Desc", resourceCulture);
}
}
///
- /// 查找类似 自动定心 的本地化字符串。
+ /// 查找类似 对图像像素值进行乘法运算,常用于图像增强和对比度调整 的本地化字符串。
///
- public static string RaySource_AutoCenterSettingButton {
+ public static string MultiplicationProcessor_Description {
get {
- return ResourceManager.GetString("RaySource_AutoCenterSettingButton", resourceCulture);
+ return ResourceManager.GetString("MultiplicationProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 配置 的本地化字符串。
+ /// 查找类似 乘数 的本地化字符串。
///
- public static string RaySource_ConfigButton {
+ public static string MultiplicationProcessor_Multiplier {
get {
- return ResourceManager.GetString("RaySource_ConfigButton", resourceCulture);
+ return ResourceManager.GetString("MultiplicationProcessor_Multiplier", resourceCulture);
}
}
///
- /// 查找类似 射线源配置 的本地化字符串。
+ /// 查找类似 像素值乘以此系数(0.1-10.0) 的本地化字符串。
///
- public static string RaySource_ConfigWindowTitle {
+ public static string MultiplicationProcessor_Multiplier_Desc {
get {
- return ResourceManager.GetString("RaySource_ConfigWindowTitle", resourceCulture);
+ return ResourceManager.GetString("MultiplicationProcessor_Multiplier_Desc", resourceCulture);
}
}
///
- /// 查找类似 确认 的本地化字符串。
+ /// 查找类似 乘法运算 的本地化字符串。
///
- public static string RaySource_Confirm_Title {
+ public static string MultiplicationProcessor_Name {
get {
- return ResourceManager.GetString("RaySource_Confirm_Title", resourceCulture);
+ return ResourceManager.GetString("MultiplicationProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 连接射线源 的本地化字符串。
+ /// 查找类似 归一化输出 的本地化字符串。
///
- public static string RaySource_ConnectButton {
+ public static string MultiplicationProcessor_Normalize {
get {
- return ResourceManager.GetString("RaySource_ConnectButton", resourceCulture);
+ return ResourceManager.GetString("MultiplicationProcessor_Normalize", resourceCulture);
}
}
///
- /// 查找类似 已连接 的本地化字符串。
+ /// 查找类似 将结果归一化到0-255范围 的本地化字符串。
///
- public static string RaySource_Connected {
+ public static string MultiplicationProcessor_Normalize_Desc {
get {
- return ResourceManager.GetString("RaySource_Connected", resourceCulture);
+ return ResourceManager.GetString("MultiplicationProcessor_Normalize_Desc", resourceCulture);
}
}
///
- /// 查找类似 连接射线源设备 的本地化字符串。
+ /// 查找类似 对图像进行按位或运算,支持与固定值或运算,可用于图像合并和掩码操作 的本地化字符串。
///
- public static string RaySource_ConnectTooltip {
+ public static string OrProcessor_Description {
get {
- return ResourceManager.GetString("RaySource_ConnectTooltip", resourceCulture);
+ return ResourceManager.GetString("OrProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 连接变量 的本地化字符串。
+ /// 查找类似 或运算 的本地化字符串。
///
- public static string RaySource_ConnectVariablesButton {
+ public static string OrProcessor_Name {
get {
- return ResourceManager.GetString("RaySource_ConnectVariablesButton", resourceCulture);
+ return ResourceManager.GetString("OrProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 电流 (μA) 的本地化字符串。
+ /// 查找类似 值 的本地化字符串。
///
- public static string RaySource_CurrentLabel {
+ public static string OrProcessor_Value {
get {
- return ResourceManager.GetString("RaySource_CurrentLabel", resourceCulture);
+ return ResourceManager.GetString("OrProcessor_Value", resourceCulture);
}
}
///
- /// 查找类似 断开射线源 的本地化字符串。
+ /// 查找类似 与图像每个像素进行OR运算的值(0-255) 的本地化字符串。
///
- public static string RaySource_DisconnectButton {
+ public static string OrProcessor_Value_Desc {
get {
- return ResourceManager.GetString("RaySource_DisconnectButton", resourceCulture);
+ return ResourceManager.GetString("OrProcessor_Value_Desc", resourceCulture);
}
}
///
- /// 查找类似 未连接 的本地化字符串。
+ /// 查找类似 PDF 文件加载失败 的本地化字符串。
///
- public static string RaySource_Disconnected {
+ public static string PdfViewer_LoadFailed {
get {
- return ResourceManager.GetString("RaySource_Disconnected", resourceCulture);
+ return ResourceManager.GetString("PdfViewer_LoadFailed", resourceCulture);
}
}
///
- /// 查找类似 断开射线源设备 的本地化字符串。
+ /// 查找类似 PDF 文件加载成功:{0}({1} 页) 的本地化字符串。
///
- public static string RaySource_DisconnectTooltip {
+ public static string PdfViewer_LoadSuccess {
get {
- return ResourceManager.GetString("RaySource_DisconnectTooltip", resourceCulture);
+ return ResourceManager.GetString("PdfViewer_LoadSuccess", resourceCulture);
}
}
///
- /// 查找类似 X射线源紧急停止 的本地化字符串。
+ /// 查找类似 打印机未找到:{0} 的本地化字符串。
///
- public static string RaySource_EmergencyStop {
+ public static string PdfViewer_PrinterNotFound {
get {
- return ResourceManager.GetString("RaySource_EmergencyStop", resourceCulture);
+ return ResourceManager.GetString("PdfViewer_PrinterNotFound", resourceCulture);
}
}
///
- /// 查找类似 射线开启时无法调整参数 的本地化字符串。
+ /// 查找类似 打印失败 的本地化字符串。
///
- public static string RaySource_Error_CannotAdjustWhileXrayOn {
+ public static string PdfViewer_PrintFailed {
get {
- return ResourceManager.GetString("RaySource_Error_CannotAdjustWhileXrayOn", resourceCulture);
+ return ResourceManager.GetString("PdfViewer_PrintFailed", resourceCulture);
}
}
///
- /// 查找类似 电流超出范围 (10-1000 μA) 的本地化字符串。
+ /// 查找类似 打印任务已提交:{0} → {1} 的本地化字符串。
///
- public static string RaySource_Error_CurrentOutOfRange {
+ public static string PdfViewer_PrintSuccess {
get {
- return ResourceManager.GetString("RaySource_Error_CurrentOutOfRange", resourceCulture);
+ return ResourceManager.GetString("PdfViewer_PrintSuccess", resourceCulture);
}
}
///
- /// 查找类似 电压超出范围 (20-225 kV) 的本地化字符串。
+ /// 查找类似 PDF 阅读器 的本地化字符串。
///
- public static string RaySource_Error_VoltageOutOfRange {
+ public static string PdfViewer_Title {
get {
- return ResourceManager.GetString("RaySource_Error_VoltageOutOfRange", resourceCulture);
+ return ResourceManager.GetString("PdfViewer_Title", resourceCulture);
}
}
///
- /// 查找类似 是否确认执行灯丝校准操作? 的本地化字符串。
+ /// 查找类似 PDF 阅读器 - {0} 的本地化字符串。
///
- public static string RaySource_FilamentCalibration_Confirm {
+ public static string PdfViewer_TitleWithFile {
get {
- return ResourceManager.GetString("RaySource_FilamentCalibration_Confirm", resourceCulture);
+ return ResourceManager.GetString("PdfViewer_TitleWithFile", resourceCulture);
}
}
///
- /// 查找类似 正在执行灯丝校准操作,请稍候... 的本地化字符串。
+ /// 查找类似 测量点到直线的垂直距离 的本地化字符串。
///
- public static string RaySource_FilamentCalibration_Message {
+ public static string PointToLineProcessor_Description {
get {
- return ResourceManager.GetString("RaySource_FilamentCalibration_Message", resourceCulture);
+ return ResourceManager.GetString("PointToLineProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 正在执行灯丝校准操作,请稍候... 的本地化字符串。
+ /// 查找类似 点到直线距离 的本地化字符串。
///
- public static string RaySource_FilamentCalibration_Title {
+ public static string PointToLineProcessor_Name {
get {
- return ResourceManager.GetString("RaySource_FilamentCalibration_Title", resourceCulture);
+ return ResourceManager.GetString("PointToLineProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 灯丝校准 的本地化字符串。
+ /// 查找类似 像素尺寸 的本地化字符串。
///
- public static string RaySource_FilamentCalibrationButton {
+ public static string PointToLineProcessor_PixelSize {
get {
- return ResourceManager.GetString("RaySource_FilamentCalibrationButton", resourceCulture);
+ return ResourceManager.GetString("PointToLineProcessor_PixelSize", resourceCulture);
}
}
///
- /// 查找类似 灯丝校准: 的本地化字符串。
+ /// 查找类似 每像素对应的物理尺寸 的本地化字符串。
///
- public static string RaySource_FilamentLabel {
+ public static string PointToLineProcessor_PixelSize_Desc {
get {
- return ResourceManager.GetString("RaySource_FilamentLabel", resourceCulture);
+ return ResourceManager.GetString("PointToLineProcessor_PixelSize_Desc", resourceCulture);
}
}
///
- /// 查找类似 灯丝寿命: 的本地化字符串。
+ /// 查找类似 线条粗细 的本地化字符串。
///
- public static string RaySource_FilamentLifetimeLabel {
+ public static string PointToLineProcessor_Thickness {
get {
- return ResourceManager.GetString("RaySource_FilamentLifetimeLabel", resourceCulture);
+ return ResourceManager.GetString("PointToLineProcessor_Thickness", resourceCulture);
}
}
///
- /// 查找类似 确认 的本地化字符串。
+ /// 查找类似 绘制线条粗细 的本地化字符串。
///
- public static string RaySource_FilamentLifetimeWarningConfirm {
+ public static string PointToLineProcessor_Thickness_Desc {
get {
- return ResourceManager.GetString("RaySource_FilamentLifetimeWarningConfirm", resourceCulture);
+ return ResourceManager.GetString("PointToLineProcessor_Thickness_Desc", resourceCulture);
}
}
///
- /// 查找类似 灯丝累计使用 {0} 小时,寿命阈值 {1} 小时,已使用 {2}%。建议尽快更换灯丝。 的本地化字符串。
+ /// 查找类似 单位 的本地化字符串。
///
- public static string RaySource_FilamentLifetimeWarningMessage {
+ public static string PointToLineProcessor_Unit {
get {
- return ResourceManager.GetString("RaySource_FilamentLifetimeWarningMessage", resourceCulture);
+ return ResourceManager.GetString("PointToLineProcessor_Unit", resourceCulture);
}
}
///
- /// 查找类似 灯丝寿命预警 的本地化字符串。
+ /// 查找类似 测量单位:px / mm / μm / cm 的本地化字符串。
///
- public static string RaySource_FilamentLifetimeWarningTitle {
+ public static string PointToLineProcessor_Unit_Desc {
get {
- return ResourceManager.GetString("RaySource_FilamentLifetimeWarningTitle", resourceCulture);
+ return ResourceManager.GetString("PointToLineProcessor_Unit_Desc", resourceCulture);
}
}
///
- /// 查找类似 High Power 的本地化字符串。
+ /// 查找类似 色彩映射表 的本地化字符串。
///
- public static string RaySource_HighPowerButton {
+ public static string PseudoColorProcessor_ColorMap {
get {
- return ResourceManager.GetString("RaySource_HighPowerButton", resourceCulture);
+ return ResourceManager.GetString("PseudoColorProcessor_ColorMap", resourceCulture);
}
}
///
- /// 查找类似 X射线源初始化失败 的本地化字符串。
+ /// 查找类似 选择用于渲染的色彩映射表 的本地化字符串。
///
- public static string RaySource_InitFailed {
+ public static string PseudoColorProcessor_ColorMap_Desc {
get {
- return ResourceManager.GetString("RaySource_InitFailed", resourceCulture);
+ return ResourceManager.GetString("PseudoColorProcessor_ColorMap_Desc", resourceCulture);
}
}
///
- /// 查找类似 初始化 的本地化字符串。
+ /// 查找类似 将灰度图像通过色彩映射表渲染为彩色图像 的本地化字符串。
///
- public static string RaySource_InitializeButton {
+ public static string PseudoColorProcessor_Description {
get {
- return ResourceManager.GetString("RaySource_InitializeButton", resourceCulture);
+ return ResourceManager.GetString("PseudoColorProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 X射线源初始化成功 的本地化字符串。
+ /// 查找类似 反转色彩映射 的本地化字符串。
///
- public static string RaySource_InitSuccess {
+ public static string PseudoColorProcessor_InvertMap {
get {
- return ResourceManager.GetString("RaySource_InitSuccess", resourceCulture);
+ return ResourceManager.GetString("PseudoColorProcessor_InvertMap", resourceCulture);
}
}
///
- /// 查找类似 激活 的本地化字符串。
+ /// 查找类似 反转色彩映射方向 的本地化字符串。
///
- public static string RaySource_InterlockActive {
+ public static string PseudoColorProcessor_InvertMap_Desc {
get {
- return ResourceManager.GetString("RaySource_InterlockActive", resourceCulture);
+ return ResourceManager.GetString("PseudoColorProcessor_InvertMap_Desc", resourceCulture);
}
}
///
- /// 查找类似 连锁: 的本地化字符串。
+ /// 查找类似 最大灰度值 的本地化字符串。
///
- public static string RaySource_InterlockLabel {
+ public static string PseudoColorProcessor_MaxValue {
get {
- return ResourceManager.GetString("RaySource_InterlockLabel", resourceCulture);
+ return ResourceManager.GetString("PseudoColorProcessor_MaxValue", resourceCulture);
}
}
///
- /// 查找类似 正常 的本地化字符串。
+ /// 查找类似 高于此值的灰度将被裁剪到最大色彩 的本地化字符串。
///
- public static string RaySource_InterlockNormal {
+ public static string PseudoColorProcessor_MaxValue_Desc {
get {
- return ResourceManager.GetString("RaySource_InterlockNormal", resourceCulture);
+ return ResourceManager.GetString("PseudoColorProcessor_MaxValue_Desc", resourceCulture);
}
}
///
- /// 查找类似 最大值 的本地化字符串。
+ /// 查找类似 最小灰度值 的本地化字符串。
///
- public static string RaySource_MaxValueLabel {
+ public static string PseudoColorProcessor_MinValue {
get {
- return ResourceManager.GetString("RaySource_MaxValueLabel", resourceCulture);
+ return ResourceManager.GetString("PseudoColorProcessor_MinValue", resourceCulture);
}
}
///
- /// 查找类似 Micro Focus 的本地化字符串。
+ /// 查找类似 低于此值的灰度将被裁剪到最小色彩 的本地化字符串。
///
- public static string RaySource_MicroFocusButton {
+ public static string PseudoColorProcessor_MinValue_Desc {
get {
- return ResourceManager.GetString("RaySource_MicroFocusButton", resourceCulture);
+ return ResourceManager.GetString("PseudoColorProcessor_MinValue_Desc", resourceCulture);
}
}
///
- /// 查找类似 最小值 的本地化字符串。
+ /// 查找类似 伪色彩渲染 的本地化字符串。
///
- public static string RaySource_MinValueLabel {
+ public static string PseudoColorProcessor_Name {
get {
- return ResourceManager.GetString("RaySource_MinValueLabel", resourceCulture);
+ return ResourceManager.GetString("PseudoColorProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 X射线源操作 的本地化字符串。
+ /// 查找类似 基于Retinex的多尺度阴影校正和光照均衡 的本地化字符串。
///
- public static string RaySource_OperateWindowTitle {
+ public static string RetinexProcessor_Description {
get {
- return ResourceManager.GetString("RaySource_OperateWindowTitle", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 操作指令已发送,等待设备执行... 的本地化字符串。
+ /// 查找类似 增益 的本地化字符串。
///
- public static string RaySource_Operation_Sent {
+ public static string RetinexProcessor_Gain {
get {
- return ResourceManager.GetString("RaySource_Operation_Sent", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Gain", resourceCulture);
}
}
///
- /// 查找类似 功率 (W) 的本地化字符串。
+ /// 查找类似 输出增益系数 的本地化字符串。
///
- public static string RaySource_PowerLabel {
+ public static string RetinexProcessor_Gain_Desc {
get {
- return ResourceManager.GetString("RaySource_PowerLabel", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Gain_Desc", resourceCulture);
}
}
///
- /// 查找类似 功率模式: 的本地化字符串。
+ /// 查找类似 处理方法 的本地化字符串。
///
- public static string RaySource_PowerModeLabel {
+ public static string RetinexProcessor_Method {
get {
- return ResourceManager.GetString("RaySource_PowerModeLabel", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Method", resourceCulture);
}
}
///
- /// 查找类似 设置 的本地化字符串。
+ /// 查找类似 选择Retinex算法类型 的本地化字符串。
///
- public static string RaySource_SettingsButton {
+ public static string RetinexProcessor_Method_Desc {
get {
- return ResourceManager.GetString("RaySource_SettingsButton", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Method_Desc", resourceCulture);
}
}
///
- /// 查找类似 射线源类型: 的本地化字符串。
+ /// 查找类似 Retinex阴影校正 的本地化字符串。
///
- public static string RaySource_SourceTypeLabel {
+ public static string RetinexProcessor_Name {
get {
- return ResourceManager.GetString("RaySource_SourceTypeLabel", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 X射线源启动失败 的本地化字符串。
+ /// 查找类似 偏移 的本地化字符串。
///
- public static string RaySource_StartFailed {
+ public static string RetinexProcessor_Offset {
get {
- return ResourceManager.GetString("RaySource_StartFailed", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Offset", resourceCulture);
}
}
///
- /// 查找类似 X射线源启动成功 的本地化字符串。
+ /// 查找类似 输出偏移量 的本地化字符串。
///
- public static string RaySource_StartSuccess {
+ public static string RetinexProcessor_Offset_Desc {
get {
- return ResourceManager.GetString("RaySource_StartSuccess", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Offset_Desc", resourceCulture);
}
}
///
- /// 查找类似 启动: 的本地化字符串。
+ /// 查找类似 尺度1 (小) 的本地化字符串。
///
- public static string RaySource_StartUpLabel {
+ public static string RetinexProcessor_Sigma1 {
get {
- return ResourceManager.GetString("RaySource_StartUpLabel", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Sigma1", resourceCulture);
}
}
///
- /// 查找类似 错误 的本地化字符串。
+ /// 查找类似 小尺度高斯核标准差,用于细节增强 的本地化字符串。
///
- public static string RaySource_Status_Error {
+ public static string RetinexProcessor_Sigma1_Desc {
get {
- return ResourceManager.GetString("RaySource_Status_Error", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Sigma1_Desc", resourceCulture);
}
}
///
- /// 查找类似 故障 的本地化字符串。
+ /// 查找类似 尺度2 (中) 的本地化字符串。
///
- public static string RaySource_Status_Fault {
+ public static string RetinexProcessor_Sigma2 {
get {
- return ResourceManager.GetString("RaySource_Status_Fault", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Sigma2", resourceCulture);
}
}
///
- /// 查找类似 空闲 的本地化字符串。
+ /// 查找类似 中尺度高斯核标准差,用于局部光照校正 的本地化字符串。
///
- public static string RaySource_Status_Idle {
+ public static string RetinexProcessor_Sigma2_Desc {
get {
- return ResourceManager.GetString("RaySource_Status_Idle", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Sigma2_Desc", resourceCulture);
}
}
///
- /// 查找类似 初始化中 的本地化字符串。
+ /// 查找类似 尺度3 (大) 的本地化字符串。
///
- public static string RaySource_Status_Initializing {
+ public static string RetinexProcessor_Sigma3 {
get {
- return ResourceManager.GetString("RaySource_Status_Initializing", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Sigma3", resourceCulture);
}
}
///
- /// 查找类似 就绪 的本地化字符串。
+ /// 查找类似 大尺度高斯核标准差,用于全局光照校正 的本地化字符串。
///
- public static string RaySource_Status_Ready {
+ public static string RetinexProcessor_Sigma3_Desc {
get {
- return ResourceManager.GetString("RaySource_Status_Ready", resourceCulture);
+ return ResourceManager.GetString("RetinexProcessor_Sigma3_Desc", resourceCulture);
}
}
///
- /// 查找类似 预热中 的本地化字符串。
+ /// 查找类似 旋转角度 的本地化字符串。
///
- public static string RaySource_Status_Warmup {
+ public static string RotateProcessor_Angle {
get {
- return ResourceManager.GetString("RaySource_Status_Warmup", resourceCulture);
+ return ResourceManager.GetString("RotateProcessor_Angle", resourceCulture);
}
}
///
- /// 查找类似 射线开启 的本地化字符串。
+ /// 查找类似 旋转角度(度),正值为逆时针旋转 的本地化字符串。
///
- public static string RaySource_Status_XrayOn {
+ public static string RotateProcessor_Angle_Desc {
get {
- return ResourceManager.GetString("RaySource_Status_XrayOn", resourceCulture);
+ return ResourceManager.GetString("RotateProcessor_Angle_Desc", resourceCulture);
}
}
///
- /// 查找类似 射线源
- ///已关闭 的本地化字符串。
+ /// 查找类似 背景灰度 的本地化字符串。
///
- public static string RaySource_StatusClosed {
+ public static string RotateProcessor_BackgroundValue {
get {
- return ResourceManager.GetString("RaySource_StatusClosed", resourceCulture);
+ return ResourceManager.GetString("RotateProcessor_BackgroundValue", resourceCulture);
}
}
///
- /// 查找类似 状态 的本地化字符串。
+ /// 查找类似 旋转后空白区域的填充灰度值(0-255) 的本地化字符串。
///
- public static string RaySource_StatusLabel {
+ public static string RotateProcessor_BackgroundValue_Desc {
get {
- return ResourceManager.GetString("RaySource_StatusLabel", resourceCulture);
+ return ResourceManager.GetString("RotateProcessor_BackgroundValue_Desc", resourceCulture);
}
}
///
- /// 查找类似 射线源
- ///已开启 的本地化字符串。
+ /// 查找类似 按任意角度旋转图像,支持画布自适应扩展 的本地化字符串。
///
- public static string RaySource_StatusOpened {
+ public static string RotateProcessor_Description {
get {
- return ResourceManager.GetString("RaySource_StatusOpened", resourceCulture);
+ return ResourceManager.GetString("RotateProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 射线源
- ///不可用 的本地化字符串。
+ /// 查找类似 扩展画布 的本地化字符串。
///
- public static string RaySource_StatusUnavailable {
+ public static string RotateProcessor_ExpandCanvas {
get {
- return ResourceManager.GetString("RaySource_StatusUnavailable", resourceCulture);
+ return ResourceManager.GetString("RotateProcessor_ExpandCanvas", resourceCulture);
}
}
///
- /// 查找类似 X射线源关闭失败 的本地化字符串。
+ /// 查找类似 扩展画布以容纳完整旋转图像,否则裁剪为原始尺寸 的本地化字符串。
///
- public static string RaySource_StopFailed {
+ public static string RotateProcessor_ExpandCanvas_Desc {
get {
- return ResourceManager.GetString("RaySource_StopFailed", resourceCulture);
+ return ResourceManager.GetString("RotateProcessor_ExpandCanvas_Desc", resourceCulture);
}
}
///
- /// 查找类似 X射线源关闭成功 的本地化字符串。
+ /// 查找类似 插值方法 的本地化字符串。
///
- public static string RaySource_StopSuccess {
+ public static string RotateProcessor_Interpolation {
get {
- return ResourceManager.GetString("RaySource_StopSuccess", resourceCulture);
+ return ResourceManager.GetString("RotateProcessor_Interpolation", resourceCulture);
}
}
///
- /// 查找类似 系统 的本地化字符串。
+ /// 查找类似 插值方法:Nearest(最近邻/快速)、Bilinear(双线性/平滑)、Bicubic(双三次/高质量) 的本地化字符串。
///
- public static string RaySource_SystemButton {
+ public static string RotateProcessor_Interpolation_Desc {
get {
- return ResourceManager.GetString("RaySource_SystemButton", resourceCulture);
+ return ResourceManager.GetString("RotateProcessor_Interpolation_Desc", resourceCulture);
}
}
///
- /// 查找类似 温度 (°C) 的本地化字符串。
+ /// 查找类似 图像旋转 的本地化字符串。
///
- public static string RaySource_TemperatureLabel {
+ public static string RotateProcessor_Name {
get {
- return ResourceManager.GetString("RaySource_TemperatureLabel", resourceCulture);
+ return ResourceManager.GetString("RotateProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 X射线源控制 的本地化字符串。
+ /// 查找类似 开始采集 的本地化字符串。
///
- public static string RaySource_Title {
+ public static string Scan_Button_Start {
get {
- return ResourceManager.GetString("RaySource_Title", resourceCulture);
+ return ResourceManager.GetString("Scan_Button_Start", resourceCulture);
}
}
///
- /// 查找类似 是否确认执行训机操作? 的本地化字符串。
+ /// 查找类似 停止采集 的本地化字符串。
///
- public static string RaySource_Training_Confirm {
+ public static string Scan_Button_Stop {
get {
- return ResourceManager.GetString("RaySource_Training_Confirm", resourceCulture);
+ return ResourceManager.GetString("Scan_Button_Stop", resourceCulture);
}
}
///
- /// 查找类似 正在执行训机操作,请稍候... 的本地化字符串。
+ /// 查找类似 旋转角度: 的本地化字符串。
///
- public static string RaySource_Training_Message {
+ public static string Scan_Text_Angles {
get {
- return ResourceManager.GetString("RaySource_Training_Message", resourceCulture);
+ return ResourceManager.GetString("Scan_Text_Angles", resourceCulture);
}
}
///
- /// 查找类似 训机设置 的本地化字符串。
+ /// 查找类似 帧合并: 的本地化字符串。
///
- public static string RaySource_Training_Title {
+ public static string Scan_Text_FrameMerge {
get {
- return ResourceManager.GetString("RaySource_Training_Title", resourceCulture);
+ return ResourceManager.GetString("Scan_Text_FrameMerge", resourceCulture);
}
}
///
- /// 查找类似 训机设置 的本地化字符串。
+ /// 查找类似 采集张数: 的本地化字符串。
///
- public static string RaySource_TrainingSettingButton {
+ public static string Scan_Text_Nums {
get {
- return ResourceManager.GetString("RaySource_TrainingSettingButton", resourceCulture);
+ return ResourceManager.GetString("Scan_Text_Nums", resourceCulture);
}
}
///
- /// 查找类似 关闭射线源 的本地化字符串。
+ /// 查找类似 采集进度: 的本地化字符串。
///
- public static string RaySource_TurnOffButton {
+ public static string Scan_Text_Progress {
get {
- return ResourceManager.GetString("RaySource_TurnOffButton", resourceCulture);
+ return ResourceManager.GetString("Scan_Text_Progress", resourceCulture);
}
}
///
- /// 查找类似 开启射线源 的本地化字符串。
+ /// 查找类似 采集模式: 的本地化字符串。
///
- public static string RaySource_TurnOnButton {
+ public static string Scan_Text_ScanMode {
get {
- return ResourceManager.GetString("RaySource_TurnOnButton", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 TXI OFF 的本地化字符串。
- ///
- public static string RaySource_TxiOffButton {
- get {
- return ResourceManager.GetString("RaySource_TxiOffButton", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 TXI ON 的本地化字符串。
- ///
- public static string RaySource_TxiOnButton {
- get {
- return ResourceManager.GetString("RaySource_TxiOnButton", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 TXI状态: 的本地化字符串。
- ///
- public static string RaySource_TxiStatusLabel {
- get {
- return ResourceManager.GetString("RaySource_TxiStatusLabel", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 真空度 的本地化字符串。
- ///
- public static string RaySource_VacuumLabel {
- get {
- return ResourceManager.GetString("RaySource_VacuumLabel", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 变量已连接 的本地化字符串。
- ///
- public static string RaySource_VariablesConnected {
- get {
- return ResourceManager.GetString("RaySource_VariablesConnected", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 电压 (kV) 的本地化字符串。
- ///
- public static string RaySource_VoltageLabel {
- get {
- return ResourceManager.GetString("RaySource_VoltageLabel", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 是否确认执行暖机操作? 的本地化字符串。
- ///
- public static string RaySource_WarmUp_Confirm {
- get {
- return ResourceManager.GetString("RaySource_WarmUp_Confirm", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 正在执行暖机操作,请稍候... 的本地化字符串。
- ///
- public static string RaySource_WarmUp_Message {
- get {
- return ResourceManager.GetString("RaySource_WarmUp_Message", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 暖机设置 的本地化字符串。
- ///
- public static string RaySource_WarmUp_Title {
- get {
- return ResourceManager.GetString("RaySource_WarmUp_Title", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 X射线源预热完成 的本地化字符串。
- ///
- public static string RaySource_WarmupComplete {
- get {
- return ResourceManager.GetString("RaySource_WarmupComplete", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 X射线源预热中... 的本地化字符串。
- ///
- public static string RaySource_WarmupInProgress {
- get {
- return ResourceManager.GetString("RaySource_WarmupInProgress", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 暖机: 的本地化字符串。
- ///
- public static string RaySource_WarmUpLabel {
- get {
- return ResourceManager.GetString("RaySource_WarmUpLabel", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 暖机设置 的本地化字符串。
- ///
- public static string RaySource_WarmUpSettingButton {
- get {
- return ResourceManager.GetString("RaySource_WarmUpSettingButton", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 温度过高警告 的本地化字符串。
- ///
- public static string RaySource_Warning_HighTemperature {
- get {
- return ResourceManager.GetString("RaySource_Warning_HighTemperature", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 真空度过低警告 的本地化字符串。
- ///
- public static string RaySource_Warning_LowVacuum {
- get {
- return ResourceManager.GetString("RaySource_Warning_LowVacuum", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 看门狗: 的本地化字符串。
- ///
- public static string RaySource_WatchdogLabel {
- get {
- return ResourceManager.GetString("RaySource_WatchdogLabel", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 关闭 的本地化字符串。
- ///
- public static string RaySource_XRayOff {
- get {
- return ResourceManager.GetString("RaySource_XRayOff", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 开启 的本地化字符串。
- ///
- public static string RaySource_XRayOn {
- get {
- return ResourceManager.GetString("RaySource_XRayOn", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 射线状态: 的本地化字符串。
- ///
- public static string RaySource_XRayOnLabel {
- get {
- return ResourceManager.GetString("RaySource_XRayOnLabel", resourceCulture);
+ return ResourceManager.GetString("Scan_Text_ScanMode", resourceCulture);
}
}
@@ -1395,6 +3786,222 @@ namespace XP.Common.Resources {
}
}
+ ///
+ /// 查找类似 增强图像边缘和细节 的本地化字符串。
+ ///
+ public static string SharpenProcessor_Description {
+ get {
+ return ResourceManager.GetString("SharpenProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 核大小 的本地化字符串。
+ ///
+ public static string SharpenProcessor_KernelSize {
+ get {
+ return ResourceManager.GetString("SharpenProcessor_KernelSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 锐化核的大小(奇数) 的本地化字符串。
+ ///
+ public static string SharpenProcessor_KernelSize_Desc {
+ get {
+ return ResourceManager.GetString("SharpenProcessor_KernelSize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 锐化方法 的本地化字符串。
+ ///
+ public static string SharpenProcessor_Method {
+ get {
+ return ResourceManager.GetString("SharpenProcessor_Method", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 选择锐化算法 的本地化字符串。
+ ///
+ public static string SharpenProcessor_Method_Desc {
+ get {
+ return ResourceManager.GetString("SharpenProcessor_Method_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 锐化 的本地化字符串。
+ ///
+ public static string SharpenProcessor_Name {
+ get {
+ return ResourceManager.GetString("SharpenProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 锐化强度 的本地化字符串。
+ ///
+ public static string SharpenProcessor_Strength {
+ get {
+ return ResourceManager.GetString("SharpenProcessor_Strength", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 锐化效果的强度 的本地化字符串。
+ ///
+ public static string SharpenProcessor_Strength_Desc {
+ get {
+ return ResourceManager.GetString("SharpenProcessor_Strength_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 边缘增强和去噪 的本地化字符串。
+ ///
+ public static string ShockFilterProcessor_Description {
+ get {
+ return ResourceManager.GetString("ShockFilterProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 时间步长 的本地化字符串。
+ ///
+ public static string ShockFilterProcessor_Dt {
+ get {
+ return ResourceManager.GetString("ShockFilterProcessor_Dt", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 演化时间步长 的本地化字符串。
+ ///
+ public static string ShockFilterProcessor_Dt_Desc {
+ get {
+ return ResourceManager.GetString("ShockFilterProcessor_Dt_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 迭代次数 的本地化字符串。
+ ///
+ public static string ShockFilterProcessor_Iterations {
+ get {
+ return ResourceManager.GetString("ShockFilterProcessor_Iterations", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 滤波迭代次数 的本地化字符串。
+ ///
+ public static string ShockFilterProcessor_Iterations_Desc {
+ get {
+ return ResourceManager.GetString("ShockFilterProcessor_Iterations_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 冲击滤波 的本地化字符串。
+ ///
+ public static string ShockFilterProcessor_Name {
+ get {
+ return ResourceManager.GetString("ShockFilterProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 阈值 的本地化字符串。
+ ///
+ public static string ShockFilterProcessor_Theta {
+ get {
+ return ResourceManager.GetString("ShockFilterProcessor_Theta", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 边缘检测阈值 的本地化字符串。
+ ///
+ public static string ShockFilterProcessor_Theta_Desc {
+ get {
+ return ResourceManager.GetString("ShockFilterProcessor_Theta_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 使用Sobel算子检测图像边缘 的本地化字符串。
+ ///
+ public static string SobelEdgeProcessor_Description {
+ get {
+ return ResourceManager.GetString("SobelEdgeProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 检测方向 的本地化字符串。
+ ///
+ public static string SobelEdgeProcessor_Direction {
+ get {
+ return ResourceManager.GetString("SobelEdgeProcessor_Direction", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 选择边缘检测方向 的本地化字符串。
+ ///
+ public static string SobelEdgeProcessor_Direction_Desc {
+ get {
+ return ResourceManager.GetString("SobelEdgeProcessor_Direction_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 核大小 的本地化字符串。
+ ///
+ public static string SobelEdgeProcessor_KernelSize {
+ get {
+ return ResourceManager.GetString("SobelEdgeProcessor_KernelSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Sobel算子的核大小(奇数) 的本地化字符串。
+ ///
+ public static string SobelEdgeProcessor_KernelSize_Desc {
+ get {
+ return ResourceManager.GetString("SobelEdgeProcessor_KernelSize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 Sobel边缘检测 的本地化字符串。
+ ///
+ public static string SobelEdgeProcessor_Name {
+ get {
+ return ResourceManager.GetString("SobelEdgeProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 缩放系数 的本地化字符串。
+ ///
+ public static string SobelEdgeProcessor_Scale {
+ get {
+ return ResourceManager.GetString("SobelEdgeProcessor_Scale", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 边缘强度的缩放系数 的本地化字符串。
+ ///
+ public static string SobelEdgeProcessor_Scale_Desc {
+ get {
+ return ResourceManager.GetString("SobelEdgeProcessor_Scale_Desc", resourceCulture);
+ }
+ }
+
///
/// 查找类似 已连接 的本地化字符串。
///
@@ -1486,2049 +4093,151 @@ namespace XP.Common.Resources {
}
///
- /// 查找类似 欢迎使用 XplorePlane X射线检测系统 的本地化字符串。
+ /// 查找类似 通过高质量插值实现图像的亚像素级放大 的本地化字符串。
///
- public static string Welcome_Message {
+ public static string SubPixelZoomProcessor_Description {
get {
- return ResourceManager.GetString("Welcome_Message", resourceCulture);
- }
- }
- ///
- /// 查找类似 Preserve image information within specified frequency range 的本地化字符串。
- ///
- public static string BandPassFilterProcessor_Description {
- get {
- return ResourceManager.GetString("BandPassFilterProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Filter Type 的本地化字符串。
- ///
- public static string BandPassFilterProcessor_FilterType {
- get {
- return ResourceManager.GetString("BandPassFilterProcessor_FilterType", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Transition characteristics of the filter 的本地化字符串。
- ///
- public static string BandPassFilterProcessor_FilterType_Desc {
- get {
- return ResourceManager.GetString("BandPassFilterProcessor_FilterType_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 High Cutoff Radius 的本地化字符串。
- ///
- public static string BandPassFilterProcessor_HighCutoff {
- get {
- return ResourceManager.GetString("BandPassFilterProcessor_HighCutoff", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Components above this frequency will be removed 的本地化字符串。
- ///
- public static string BandPassFilterProcessor_HighCutoff_Desc {
- get {
- return ResourceManager.GetString("BandPassFilterProcessor_HighCutoff_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Low Cutoff Radius 的本地化字符串。
- ///
- public static string BandPassFilterProcessor_LowCutoff {
- get {
- return ResourceManager.GetString("BandPassFilterProcessor_LowCutoff", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Components below this frequency will be removed 的本地化字符串。
- ///
- public static string BandPassFilterProcessor_LowCutoff_Desc {
- get {
- return ResourceManager.GetString("BandPassFilterProcessor_LowCutoff_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Band Pass Filter 的本地化字符串。
- ///
- public static string BandPassFilterProcessor_Name {
- get {
- return ResourceManager.GetString("BandPassFilterProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Butterworth Order 的本地化字符串。
- ///
- public static string BandPassFilterProcessor_Order {
- get {
- return ResourceManager.GetString("BandPassFilterProcessor_Order", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Order of Butterworth filter 的本地化字符串。
- ///
- public static string BandPassFilterProcessor_Order_Desc {
- get {
- return ResourceManager.GetString("BandPassFilterProcessor_Order_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Edge-preserving smoothing filter 的本地化字符串。
- ///
- public static string BilateralFilterProcessor_Description {
- get {
- return ResourceManager.GetString("BilateralFilterProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Diameter 的本地化字符串。
- ///
- public static string BilateralFilterProcessor_Diameter {
- get {
- return ResourceManager.GetString("BilateralFilterProcessor_Diameter", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Diameter of each pixel neighborhood 的本地化字符串。
- ///
- public static string BilateralFilterProcessor_Diameter_Desc {
- get {
- return ResourceManager.GetString("BilateralFilterProcessor_Diameter_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Bilateral Filter 的本地化字符串。
- ///
- public static string BilateralFilterProcessor_Name {
- get {
- return ResourceManager.GetString("BilateralFilterProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Sigma Color 的本地化字符串。
- ///
- public static string BilateralFilterProcessor_SigmaColor {
- get {
- return ResourceManager.GetString("BilateralFilterProcessor_SigmaColor", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Filter sigma in the color space 的本地化字符串。
- ///
- public static string BilateralFilterProcessor_SigmaColor_Desc {
- get {
- return ResourceManager.GetString("BilateralFilterProcessor_SigmaColor_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Sigma Space 的本地化字符串。
- ///
- public static string BilateralFilterProcessor_SigmaSpace {
- get {
- return ResourceManager.GetString("BilateralFilterProcessor_SigmaSpace", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Filter sigma in the coordinate space 的本地化字符串。
- ///
- public static string BilateralFilterProcessor_SigmaSpace_Desc {
- get {
- return ResourceManager.GetString("BilateralFilterProcessor_SigmaSpace_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Detect contours in image and output contour information 的本地化字符串。
- ///
- public static string ContourProcessor_Description {
- get {
- return ResourceManager.GetString("ContourProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Max Area 的本地化字符串。
- ///
- public static string ContourProcessor_MaxArea {
- get {
- return ResourceManager.GetString("ContourProcessor_MaxArea", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Filter contours larger than this area 的本地化字符串。
- ///
- public static string ContourProcessor_MaxArea_Desc {
- get {
- return ResourceManager.GetString("ContourProcessor_MaxArea_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Min Area 的本地化字符串。
- ///
- public static string ContourProcessor_MinArea {
- get {
- return ResourceManager.GetString("ContourProcessor_MinArea", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Filter contours smaller than this area 的本地化字符串。
- ///
- public static string ContourProcessor_MinArea_Desc {
- get {
- return ResourceManager.GetString("ContourProcessor_MinArea_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Contour Detection 的本地化字符串。
- ///
- public static string ContourProcessor_Name {
- get {
- return ResourceManager.GetString("ContourProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Target Color 的本地化字符串。
- ///
- public static string ContourProcessor_TargetColor {
- get {
- return ResourceManager.GetString("ContourProcessor_TargetColor", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Select the color of regions to find (white or black) 的本地化字符串。
- ///
- public static string ContourProcessor_TargetColor_Desc {
- get {
- return ResourceManager.GetString("ContourProcessor_TargetColor_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Line Thickness 的本地化字符串。
- ///
- public static string ContourProcessor_Thickness {
- get {
- return ResourceManager.GetString("ContourProcessor_Thickness", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Thickness of contour lines 的本地化字符串。
- ///
- public static string ContourProcessor_Thickness_Desc {
- get {
- return ResourceManager.GetString("ContourProcessor_Thickness_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Threshold Value 的本地化字符串。
- ///
- public static string ContourProcessor_ThresholdValue {
- get {
- return ResourceManager.GetString("ContourProcessor_ThresholdValue", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Threshold value for binarization (0-255) 的本地化字符串。
- ///
- public static string ContourProcessor_ThresholdValue_Desc {
- get {
- return ResourceManager.GetString("ContourProcessor_ThresholdValue_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Use Otsu Auto Threshold 的本地化字符串。
- ///
- public static string ContourProcessor_UseOtsu {
- get {
- return ResourceManager.GetString("ContourProcessor_UseOtsu", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Automatically calculate optimal threshold 的本地化字符串。
- ///
- public static string ContourProcessor_UseOtsu_Desc {
- get {
- return ResourceManager.GetString("ContourProcessor_UseOtsu_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Enable Threshold 的本地化字符串。
- ///
- public static string ContourProcessor_UseThreshold {
- get {
- return ResourceManager.GetString("ContourProcessor_UseThreshold", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Apply binary threshold before contour detection 的本地化字符串。
- ///
- public static string ContourProcessor_UseThreshold_Desc {
- get {
- return ResourceManager.GetString("ContourProcessor_UseThreshold_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Auto Contrast 的本地化字符串。
- ///
- public static string ContrastProcessor_AutoContrast {
- get {
- return ResourceManager.GetString("ContrastProcessor_AutoContrast", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Automatically stretch contrast to full range 的本地化字符串。
- ///
- public static string ContrastProcessor_AutoContrast_Desc {
- get {
- return ResourceManager.GetString("ContrastProcessor_AutoContrast_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Brightness 的本地化字符串。
- ///
- public static string ContrastProcessor_Brightness {
- get {
- return ResourceManager.GetString("ContrastProcessor_Brightness", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Brightness offset 的本地化字符串。
- ///
- public static string ContrastProcessor_Brightness_Desc {
- get {
- return ResourceManager.GetString("ContrastProcessor_Brightness_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 CLAHE Clip Limit 的本地化字符串。
- ///
- public static string ContrastProcessor_ClipLimit {
- get {
- return ResourceManager.GetString("ContrastProcessor_ClipLimit", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 CLAHE contrast limit threshold 的本地化字符串。
- ///
- public static string ContrastProcessor_ClipLimit_Desc {
- get {
- return ResourceManager.GetString("ContrastProcessor_ClipLimit_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Contrast 的本地化字符串。
- ///
- public static string ContrastProcessor_Contrast {
- get {
- return ResourceManager.GetString("ContrastProcessor_Contrast", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Contrast gain, 1.0 for original contrast 的本地化字符串。
- ///
- public static string ContrastProcessor_Contrast_Desc {
- get {
- return ResourceManager.GetString("ContrastProcessor_Contrast_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Adjust image contrast and brightness 的本地化字符串。
- ///
- public static string ContrastProcessor_Description {
- get {
- return ResourceManager.GetString("ContrastProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Contrast Adjustment 的本地化字符串。
- ///
- public static string ContrastProcessor_Name {
- get {
- return ResourceManager.GetString("ContrastProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Use CLAHE 的本地化字符串。
- ///
- public static string ContrastProcessor_UseCLAHE {
- get {
- return ResourceManager.GetString("ContrastProcessor_UseCLAHE", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Use Contrast Limited Adaptive Histogram Equalization 的本地化字符串。
- ///
- public static string ContrastProcessor_UseCLAHE_Desc {
- get {
- return ResourceManager.GetString("ContrastProcessor_UseCLAHE_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Perform division operation on image for background correction and normalization 的本地化字符串。
- ///
- public static string DivisionProcessor_Description {
- get {
- return ResourceManager.GetString("DivisionProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Divisor 的本地化字符串。
- ///
- public static string DivisionProcessor_Divisor {
- get {
- return ResourceManager.GetString("DivisionProcessor_Divisor", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Each pixel value will be divided by this number 的本地化字符串。
- ///
- public static string DivisionProcessor_Divisor_Desc {
- get {
- return ResourceManager.GetString("DivisionProcessor_Divisor_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Division Operation 的本地化字符串。
- ///
- public static string DivisionProcessor_Name {
- get {
- return ResourceManager.GetString("DivisionProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Normalize Output 的本地化字符串。
- ///
- public static string DivisionProcessor_Normalize {
- get {
- return ResourceManager.GetString("DivisionProcessor_Normalize", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Normalize result to 0-255 range 的本地化字符串。
- ///
- public static string DivisionProcessor_Normalize_Desc {
- get {
- return ResourceManager.GetString("DivisionProcessor_Normalize_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Scale Factor 的本地化字符串。
- ///
- public static string DivisionProcessor_Scale {
- get {
- return ResourceManager.GetString("DivisionProcessor_Scale", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Division result multiplied by this scale factor 的本地化字符串。
- ///
- public static string DivisionProcessor_Scale_Desc {
- get {
- return ResourceManager.GetString("DivisionProcessor_Scale_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Preserve image information within specified frequency range 的本地化字符串。
- ///
- public static string FilterProcessor_BandPass_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_BandPass_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Band Pass Filter 的本地化字符串。
- ///
- public static string FilterProcessor_BandPass_Name {
- get {
- return ResourceManager.GetString("FilterProcessor_BandPass_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Band Pass Filter Type 的本地化字符串。
- ///
- public static string FilterProcessor_BandPassFilterType {
- get {
- return ResourceManager.GetString("FilterProcessor_BandPassFilterType", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Transition characteristics of the band pass filter 的本地化字符串。
- ///
- public static string FilterProcessor_BandPassFilterType_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_BandPassFilterType_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Edge-preserving smoothing filter 的本地化字符串。
- ///
- public static string FilterProcessor_Bilateral_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_Bilateral_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Bilateral Filter 的本地化字符串。
- ///
- public static string FilterProcessor_Bilateral_Name {
- get {
- return ResourceManager.GetString("FilterProcessor_Bilateral_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Cutoff Frequency 的本地化字符串。
- ///
- public static string FilterProcessor_D0 {
- get {
- return ResourceManager.GetString("FilterProcessor_D0", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Cutoff frequency for frequency domain filtering 的本地化字符串。
- ///
- public static string FilterProcessor_D0_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_D0_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Integrated multiple filtering methods 的本地化字符串。
- ///
- public static string FilterProcessor_Description {
- get {
- return ResourceManager.GetString("FilterProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Filter Type 的本地化字符串。
- ///
- public static string FilterProcessor_FilterType {
- get {
- return ResourceManager.GetString("FilterProcessor_FilterType", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Select filtering method 的本地化字符串。
- ///
- public static string FilterProcessor_FilterType_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_FilterType_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Smooth image and reduce Gaussian noise while preserving edges 的本地化字符串。
- ///
- public static string FilterProcessor_Gaussian_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_Gaussian_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gaussian Filter 的本地化字符串。
- ///
- public static string FilterProcessor_Gaussian_Name {
- get {
- return ResourceManager.GetString("FilterProcessor_Gaussian_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 High Cutoff Radius 的本地化字符串。
- ///
- public static string FilterProcessor_HighCutoff {
- get {
- return ResourceManager.GetString("FilterProcessor_HighCutoff", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Components above this frequency will be removed 的本地化字符串。
- ///
- public static string FilterProcessor_HighCutoff_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_HighCutoff_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Edge enhancement in frequency domain 的本地化字符串。
- ///
- public static string FilterProcessor_HighPass_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_HighPass_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 High Pass Filter 的本地化字符串。
- ///
- public static string FilterProcessor_HighPass_Name {
- get {
- return ResourceManager.GetString("FilterProcessor_HighPass_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Kernel Size 的本地化字符串。
- ///
- public static string FilterProcessor_KernelSize {
- get {
- return ResourceManager.GetString("FilterProcessor_KernelSize", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Size of the filter kernel (must be odd) 的本地化字符串。
- ///
- public static string FilterProcessor_KernelSize_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_KernelSize_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Low Cutoff Radius 的本地化字符串。
- ///
- public static string FilterProcessor_LowCutoff {
- get {
- return ResourceManager.GetString("FilterProcessor_LowCutoff", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Components below this frequency will be removed 的本地化字符串。
- ///
- public static string FilterProcessor_LowCutoff_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_LowCutoff_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Remove high frequency noise in frequency domain 的本地化字符串。
- ///
- public static string FilterProcessor_LowPass_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_LowPass_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Low Pass Filter 的本地化字符串。
- ///
- public static string FilterProcessor_LowPass_Name {
- get {
- return ResourceManager.GetString("FilterProcessor_LowPass_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Simple averaging smoothing filter 的本地化字符串。
- ///
- public static string FilterProcessor_Mean_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_Mean_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Mean Filter 的本地化字符串。
- ///
- public static string FilterProcessor_Mean_Name {
- get {
- return ResourceManager.GetString("FilterProcessor_Mean_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Remove salt-and-pepper noise effectively 的本地化字符串。
- ///
- public static string FilterProcessor_Median_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_Median_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Median Filter 的本地化字符串。
- ///
- public static string FilterProcessor_Median_Name {
- get {
- return ResourceManager.GetString("FilterProcessor_Median_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Comprehensive Filter 的本地化字符串。
- ///
- public static string FilterProcessor_Name {
- get {
- return ResourceManager.GetString("FilterProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Butterworth Order 的本地化字符串。
- ///
- public static string FilterProcessor_Order {
- get {
- return ResourceManager.GetString("FilterProcessor_Order", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Order of Butterworth filter 的本地化字符串。
- ///
- public static string FilterProcessor_Order_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_Order_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Sigma 的本地化字符串。
- ///
- public static string FilterProcessor_Sigma {
- get {
- return ResourceManager.GetString("FilterProcessor_Sigma", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Standard deviation for Gaussian/Bilateral filter 的本地化字符串。
- ///
- public static string FilterProcessor_Sigma_Desc {
- get {
- return ResourceManager.GetString("FilterProcessor_Sigma_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Adjust image brightness through Gamma value 的本地化字符串。
- ///
- public static string GammaProcessor_Description {
- get {
- return ResourceManager.GetString("GammaProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gain 的本地化字符串。
- ///
- public static string GammaProcessor_Gain {
- get {
- return ResourceManager.GetString("GammaProcessor_Gain", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Output gain coefficient 的本地化字符串。
- ///
- public static string GammaProcessor_Gain_Desc {
- get {
- return ResourceManager.GetString("GammaProcessor_Gain_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gamma Value 的本地化字符串。
- ///
- public static string GammaProcessor_Gamma {
- get {
- return ResourceManager.GetString("GammaProcessor_Gamma", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gamma value, less than 1 darkens image, greater than 1 brightens image 的本地化字符串。
- ///
- public static string GammaProcessor_Gamma_Desc {
- get {
- return ResourceManager.GetString("GammaProcessor_Gamma_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gamma Correction 的本地化字符串。
- ///
- public static string GammaProcessor_Name {
- get {
- return ResourceManager.GetString("GammaProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Smooth image using Gaussian kernel 的本地化字符串。
- ///
- public static string GaussianBlurProcessor_Description {
- get {
- return ResourceManager.GetString("GaussianBlurProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Kernel Size 的本地化字符串。
- ///
- public static string GaussianBlurProcessor_KernelSize {
- get {
- return ResourceManager.GetString("GaussianBlurProcessor_KernelSize", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Size of Gaussian kernel, must be odd 的本地化字符串。
- ///
- public static string GaussianBlurProcessor_KernelSize_Desc {
- get {
- return ResourceManager.GetString("GaussianBlurProcessor_KernelSize_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gaussian Blur 的本地化字符串。
- ///
- public static string GaussianBlurProcessor_Name {
- get {
- return ResourceManager.GetString("GaussianBlurProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Standard Deviation 的本地化字符串。
- ///
- public static string GaussianBlurProcessor_Sigma {
- get {
- return ResourceManager.GetString("GaussianBlurProcessor_Sigma", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Standard deviation of Gaussian kernel, controls blur amount 的本地化字符串。
- ///
- public static string GaussianBlurProcessor_Sigma_Desc {
- get {
- return ResourceManager.GetString("GaussianBlurProcessor_Sigma_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Convert image to grayscale 的本地化字符串。
- ///
- public static string GrayscaleProcessor_Description {
- get {
- return ResourceManager.GetString("GrayscaleProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Conversion Method 的本地化字符串。
- ///
- public static string GrayscaleProcessor_Method {
- get {
- return ResourceManager.GetString("GrayscaleProcessor_Method", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Method for grayscale conversion 的本地化字符串。
- ///
- public static string GrayscaleProcessor_Method_Desc {
- get {
- return ResourceManager.GetString("GrayscaleProcessor_Method_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Grayscale Conversion 的本地化字符串。
- ///
- public static string GrayscaleProcessor_Name {
- get {
- return ResourceManager.GetString("GrayscaleProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Bias 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_Bias {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_Bias", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Bias for adaptive logarithmic and Drago mapping, controls dark/bright balance 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_Bias_Desc {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_Bias_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 High Dynamic Range image enhancement with tone mapping 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_Description {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Detail Boost 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_DetailBoost {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_DetailBoost", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Detail enhancement factor, higher values reveal more fine details 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_DetailBoost_Desc {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_DetailBoost_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gamma 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_Gamma {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_Gamma", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gamma correction value for output brightness adjustment 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_Gamma_Desc {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_Gamma_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Tone Mapping Method 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_Method {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_Method", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Select HDR tone mapping algorithm: LocalToneMap, AdaptiveLog, Drago, BilateralToneMap 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_Method_Desc {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_Method_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 HDR Enhancement 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_Name {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Saturation 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_Saturation {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_Saturation", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Contrast saturation factor for LocalToneMap method 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_Saturation_Desc {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_Saturation_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Sigma Color 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_SigmaColor {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_SigmaColor", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Color sigma for bilateral tone mapping, controls edge preservation 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_SigmaColor_Desc {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_SigmaColor_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Sigma Space 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_SigmaSpace {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_SigmaSpace", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Spatial sigma for base layer extraction, controls smoothing range 的本地化字符串。
- ///
- public static string HDREnhancementProcessor_SigmaSpace_Desc {
- get {
- return ResourceManager.GetString("HDREnhancementProcessor_SigmaSpace_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Cutoff Frequency 的本地化字符串。
- ///
- public static string HighPassFilterProcessor_CutoffFrequency {
- get {
- return ResourceManager.GetString("HighPassFilterProcessor_CutoffFrequency", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Cutoff frequency for high pass filter 的本地化字符串。
- ///
- public static string HighPassFilterProcessor_CutoffFrequency_Desc {
- get {
- return ResourceManager.GetString("HighPassFilterProcessor_CutoffFrequency_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Edge enhancement in frequency domain 的本地化字符串。
- ///
- public static string HighPassFilterProcessor_Description {
- get {
- return ResourceManager.GetString("HighPassFilterProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 High Pass Filter 的本地化字符串。
- ///
- public static string HighPassFilterProcessor_Name {
- get {
- return ResourceManager.GetString("HighPassFilterProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Clip Limit 的本地化字符串。
- ///
- public static string HistogramEqualizationProcessor_ClipLimit {
- get {
- return ResourceManager.GetString("HistogramEqualizationProcessor_ClipLimit", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Contrast limiting threshold for CLAHE 的本地化字符串。
- ///
- public static string HistogramEqualizationProcessor_ClipLimit_Desc {
- get {
- return ResourceManager.GetString("HistogramEqualizationProcessor_ClipLimit_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Enhance image contrast 的本地化字符串。
- ///
- public static string HistogramEqualizationProcessor_Description {
- get {
- return ResourceManager.GetString("HistogramEqualizationProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Equalization Method 的本地化字符串。
- ///
- public static string HistogramEqualizationProcessor_Method {
- get {
- return ResourceManager.GetString("HistogramEqualizationProcessor_Method", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Select histogram equalization algorithm 的本地化字符串。
- ///
- public static string HistogramEqualizationProcessor_Method_Desc {
- get {
- return ResourceManager.GetString("HistogramEqualizationProcessor_Method_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Histogram Equalization 的本地化字符串。
- ///
- public static string HistogramEqualizationProcessor_Name {
- get {
- return ResourceManager.GetString("HistogramEqualizationProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Tile Size 的本地化字符串。
- ///
- public static string HistogramEqualizationProcessor_TileSize {
- get {
- return ResourceManager.GetString("HistogramEqualizationProcessor_TileSize", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Tile size for CLAHE 的本地化字符串。
- ///
- public static string HistogramEqualizationProcessor_TileSize_Desc {
- get {
- return ResourceManager.GetString("HistogramEqualizationProcessor_TileSize_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Detect horizontal edges specifically 的本地化字符串。
- ///
- public static string HorizontalEdgeProcessor_Description {
- get {
- return ResourceManager.GetString("HorizontalEdgeProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Detection Method 的本地化字符串。
- ///
- public static string HorizontalEdgeProcessor_Method {
- get {
- return ResourceManager.GetString("HorizontalEdgeProcessor_Method", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Select horizontal edge detection algorithm 的本地化字符串。
- ///
- public static string HorizontalEdgeProcessor_Method_Desc {
- get {
- return ResourceManager.GetString("HorizontalEdgeProcessor_Method_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Horizontal Edge Detection 的本地化字符串。
- ///
- public static string HorizontalEdgeProcessor_Name {
- get {
- return ResourceManager.GetString("HorizontalEdgeProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Sensitivity 的本地化字符串。
- ///
- public static string HorizontalEdgeProcessor_Sensitivity {
- get {
- return ResourceManager.GetString("HorizontalEdgeProcessor_Sensitivity", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Edge detection sensitivity 的本地化字符串。
- ///
- public static string HorizontalEdgeProcessor_Sensitivity_Desc {
- get {
- return ResourceManager.GetString("HorizontalEdgeProcessor_Sensitivity_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Threshold 的本地化字符串。
- ///
- public static string HorizontalEdgeProcessor_Threshold {
- get {
- return ResourceManager.GetString("HorizontalEdgeProcessor_Threshold", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Edge detection threshold 的本地化字符串。
- ///
- public static string HorizontalEdgeProcessor_Threshold_Desc {
- get {
- return ResourceManager.GetString("HorizontalEdgeProcessor_Threshold_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Detect image edges using Kirsch operator 的本地化字符串。
- ///
- public static string KirschEdgeProcessor_Description {
- get {
- return ResourceManager.GetString("KirschEdgeProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Kirsch Edge Detection 的本地化字符串。
- ///
- public static string KirschEdgeProcessor_Name {
- get {
- return ResourceManager.GetString("KirschEdgeProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Scale Factor 的本地化字符串。
- ///
- public static string KirschEdgeProcessor_Scale {
- get {
- return ResourceManager.GetString("KirschEdgeProcessor_Scale", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Scale factor for edge intensity 的本地化字符串。
- ///
- public static string KirschEdgeProcessor_Scale_Desc {
- get {
- return ResourceManager.GetString("KirschEdgeProcessor_Scale_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Threshold 的本地化字符串。
- ///
- public static string KirschEdgeProcessor_Threshold {
- get {
- return ResourceManager.GetString("KirschEdgeProcessor_Threshold", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Edge detection threshold 的本地化字符串。
- ///
- public static string KirschEdgeProcessor_Threshold_Desc {
- get {
- return ResourceManager.GetString("KirschEdgeProcessor_Threshold_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Cutoff Frequency 的本地化字符串。
- ///
- public static string LowPassFilterProcessor_CutoffFrequency {
- get {
- return ResourceManager.GetString("LowPassFilterProcessor_CutoffFrequency", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Cutoff frequency for low pass filter 的本地化字符串。
- ///
- public static string LowPassFilterProcessor_CutoffFrequency_Desc {
- get {
- return ResourceManager.GetString("LowPassFilterProcessor_CutoffFrequency_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Remove high frequency noise in frequency domain 的本地化字符串。
- ///
- public static string LowPassFilterProcessor_Description {
- get {
- return ResourceManager.GetString("LowPassFilterProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Low Pass Filter 的本地化字符串。
- ///
- public static string LowPassFilterProcessor_Name {
- get {
- return ResourceManager.GetString("LowPassFilterProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Simple averaging smoothing filter 的本地化字符串。
- ///
- public static string MeanFilterProcessor_Description {
- get {
- return ResourceManager.GetString("MeanFilterProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Kernel Size 的本地化字符串。
- ///
- public static string MeanFilterProcessor_KernelSize {
- get {
- return ResourceManager.GetString("MeanFilterProcessor_KernelSize", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Size of the filter kernel (must be odd) 的本地化字符串。
- ///
- public static string MeanFilterProcessor_KernelSize_Desc {
- get {
- return ResourceManager.GetString("MeanFilterProcessor_KernelSize_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Mean Filter 的本地化字符串。
- ///
- public static string MeanFilterProcessor_Name {
- get {
- return ResourceManager.GetString("MeanFilterProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Remove salt-and-pepper noise effectively 的本地化字符串。
- ///
- public static string MedianFilterProcessor_Description {
- get {
- return ResourceManager.GetString("MedianFilterProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Kernel Size 的本地化字符串。
- ///
- public static string MedianFilterProcessor_KernelSize {
- get {
- return ResourceManager.GetString("MedianFilterProcessor_KernelSize", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Size of the filter kernel (must be odd) 的本地化字符串。
- ///
- public static string MedianFilterProcessor_KernelSize_Desc {
- get {
- return ResourceManager.GetString("MedianFilterProcessor_KernelSize_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Median Filter 的本地化字符串。
- ///
- public static string MedianFilterProcessor_Name {
- get {
- return ResourceManager.GetString("MedianFilterProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Flip image horizontally, vertically, or both 的本地化字符串。
- ///
- public static string MirrorProcessor_Description {
- get {
- return ResourceManager.GetString("MirrorProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Direction 的本地化字符串。
- ///
- public static string MirrorProcessor_Direction {
- get {
- return ResourceManager.GetString("MirrorProcessor_Direction", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Flip direction: Horizontal (left-right), Vertical (up-down), Both (180° rotation) 的本地化字符串。
- ///
- public static string MirrorProcessor_Direction_Desc {
- get {
- return ResourceManager.GetString("MirrorProcessor_Direction_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Mirror 的本地化字符串。
- ///
- public static string MirrorProcessor_Name {
- get {
- return ResourceManager.GetString("MirrorProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Perform morphological operations (erosion, dilation, opening, closing) 的本地化字符串。
- ///
- public static string MorphologyProcessor_Description {
- get {
- return ResourceManager.GetString("MorphologyProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Iterations 的本地化字符串。
- ///
- public static string MorphologyProcessor_Iterations {
- get {
- return ResourceManager.GetString("MorphologyProcessor_Iterations", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Number of times to repeat morphological operation 的本地化字符串。
- ///
- public static string MorphologyProcessor_Iterations_Desc {
- get {
- return ResourceManager.GetString("MorphologyProcessor_Iterations_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Kernel Size 的本地化字符串。
- ///
- public static string MorphologyProcessor_KernelSize {
- get {
- return ResourceManager.GetString("MorphologyProcessor_KernelSize", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Size of structuring element 的本地化字符串。
- ///
- public static string MorphologyProcessor_KernelSize_Desc {
- get {
- return ResourceManager.GetString("MorphologyProcessor_KernelSize_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Morphology Processing 的本地化字符串。
- ///
- public static string MorphologyProcessor_Name {
- get {
- return ResourceManager.GetString("MorphologyProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Operation Type 的本地化字符串。
- ///
- public static string MorphologyProcessor_Operation {
- get {
- return ResourceManager.GetString("MorphologyProcessor_Operation", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Select morphological operation type 的本地化字符串。
- ///
- public static string MorphologyProcessor_Operation_Desc {
- get {
- return ResourceManager.GetString("MorphologyProcessor_Operation_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Color Map 的本地化字符串。
- ///
- public static string PseudoColorProcessor_ColorMap {
- get {
- return ResourceManager.GetString("PseudoColorProcessor_ColorMap", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Select color mapping table for rendering 的本地化字符串。
- ///
- public static string PseudoColorProcessor_ColorMap_Desc {
- get {
- return ResourceManager.GetString("PseudoColorProcessor_ColorMap_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Map grayscale image to color image using color maps 的本地化字符串。
- ///
- public static string PseudoColorProcessor_Description {
- get {
- return ResourceManager.GetString("PseudoColorProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Invert Color Map 的本地化字符串。
- ///
- public static string PseudoColorProcessor_InvertMap {
- get {
- return ResourceManager.GetString("PseudoColorProcessor_InvertMap", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Reverse the color mapping direction 的本地化字符串。
- ///
- public static string PseudoColorProcessor_InvertMap_Desc {
- get {
- return ResourceManager.GetString("PseudoColorProcessor_InvertMap_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Max Gray Value 的本地化字符串。
- ///
- public static string PseudoColorProcessor_MaxValue {
- get {
- return ResourceManager.GetString("PseudoColorProcessor_MaxValue", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gray values above this will be clipped to maximum color 的本地化字符串。
- ///
- public static string PseudoColorProcessor_MaxValue_Desc {
- get {
- return ResourceManager.GetString("PseudoColorProcessor_MaxValue_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Min Gray Value 的本地化字符串。
- ///
- public static string PseudoColorProcessor_MinValue {
- get {
- return ResourceManager.GetString("PseudoColorProcessor_MinValue", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gray values below this will be clipped to minimum color 的本地化字符串。
- ///
- public static string PseudoColorProcessor_MinValue_Desc {
- get {
- return ResourceManager.GetString("PseudoColorProcessor_MinValue_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Pseudo Color Rendering 的本地化字符串。
- ///
- public static string PseudoColorProcessor_Name {
- get {
- return ResourceManager.GetString("PseudoColorProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Multi-scale shadow correction and illumination equalization based on Retinex 的本地化字符串。
- ///
- public static string RetinexProcessor_Description {
- get {
- return ResourceManager.GetString("RetinexProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Gain 的本地化字符串。
- ///
- public static string RetinexProcessor_Gain {
- get {
- return ResourceManager.GetString("RetinexProcessor_Gain", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Output gain factor 的本地化字符串。
- ///
- public static string RetinexProcessor_Gain_Desc {
- get {
- return ResourceManager.GetString("RetinexProcessor_Gain_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Processing Method 的本地化字符串。
- ///
- public static string RetinexProcessor_Method {
- get {
- return ResourceManager.GetString("RetinexProcessor_Method", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Select Retinex algorithm type 的本地化字符串。
- ///
- public static string RetinexProcessor_Method_Desc {
- get {
- return ResourceManager.GetString("RetinexProcessor_Method_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Retinex Shadow Correction 的本地化字符串。
- ///
- public static string RetinexProcessor_Name {
- get {
- return ResourceManager.GetString("RetinexProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Offset 的本地化字符串。
- ///
- public static string RetinexProcessor_Offset {
- get {
- return ResourceManager.GetString("RetinexProcessor_Offset", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Output offset value 的本地化字符串。
- ///
- public static string RetinexProcessor_Offset_Desc {
- get {
- return ResourceManager.GetString("RetinexProcessor_Offset_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Scale 1 (Small) 的本地化字符串。
- ///
- public static string RetinexProcessor_Sigma1 {
- get {
- return ResourceManager.GetString("RetinexProcessor_Sigma1", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Small scale Gaussian kernel sigma for detail enhancement 的本地化字符串。
- ///
- public static string RetinexProcessor_Sigma1_Desc {
- get {
- return ResourceManager.GetString("RetinexProcessor_Sigma1_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Scale 2 (Medium) 的本地化字符串。
- ///
- public static string RetinexProcessor_Sigma2 {
- get {
- return ResourceManager.GetString("RetinexProcessor_Sigma2", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Medium scale Gaussian kernel sigma for local illumination correction 的本地化字符串。
- ///
- public static string RetinexProcessor_Sigma2_Desc {
- get {
- return ResourceManager.GetString("RetinexProcessor_Sigma2_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Scale 3 (Large) 的本地化字符串。
- ///
- public static string RetinexProcessor_Sigma3 {
- get {
- return ResourceManager.GetString("RetinexProcessor_Sigma3", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Large scale Gaussian kernel sigma for global illumination correction 的本地化字符串。
- ///
- public static string RetinexProcessor_Sigma3_Desc {
- get {
- return ResourceManager.GetString("RetinexProcessor_Sigma3_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Angle 的本地化字符串。
- ///
- public static string RotateProcessor_Angle {
- get {
- return ResourceManager.GetString("RotateProcessor_Angle", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Rotation angle in degrees, positive is counter-clockwise 的本地化字符串。
- ///
- public static string RotateProcessor_Angle_Desc {
- get {
- return ResourceManager.GetString("RotateProcessor_Angle_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Background 的本地化字符串。
- ///
- public static string RotateProcessor_BackgroundValue {
- get {
- return ResourceManager.GetString("RotateProcessor_BackgroundValue", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Background fill value (0-255) for areas outside the original image 的本地化字符串。
- ///
- public static string RotateProcessor_BackgroundValue_Desc {
- get {
- return ResourceManager.GetString("RotateProcessor_BackgroundValue_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Rotate image by arbitrary angle with optional canvas expansion 的本地化字符串。
- ///
- public static string RotateProcessor_Description {
- get {
- return ResourceManager.GetString("RotateProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Expand Canvas 的本地化字符串。
- ///
- public static string RotateProcessor_ExpandCanvas {
- get {
- return ResourceManager.GetString("RotateProcessor_ExpandCanvas", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Expand canvas to fit the entire rotated image, otherwise crop to original size 的本地化字符串。
- ///
- public static string RotateProcessor_ExpandCanvas_Desc {
- get {
- return ResourceManager.GetString("RotateProcessor_ExpandCanvas_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Interpolation 的本地化字符串。
- ///
- public static string RotateProcessor_Interpolation {
- get {
- return ResourceManager.GetString("RotateProcessor_Interpolation", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Interpolation method: Nearest (fast), Bilinear (smooth), Bicubic (high quality) 的本地化字符串。
- ///
- public static string RotateProcessor_Interpolation_Desc {
- get {
- return ResourceManager.GetString("RotateProcessor_Interpolation_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Rotate 的本地化字符串。
- ///
- public static string RotateProcessor_Name {
- get {
- return ResourceManager.GetString("RotateProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Enhance image edges and details 的本地化字符串。
- ///
- public static string SharpenProcessor_Description {
- get {
- return ResourceManager.GetString("SharpenProcessor_Description", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Kernel Size 的本地化字符串。
- ///
- public static string SharpenProcessor_KernelSize {
- get {
- return ResourceManager.GetString("SharpenProcessor_KernelSize", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Size of sharpening kernel (must be odd) 的本地化字符串。
- ///
- public static string SharpenProcessor_KernelSize_Desc {
- get {
- return ResourceManager.GetString("SharpenProcessor_KernelSize_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Sharpen Method 的本地化字符串。
- ///
- public static string SharpenProcessor_Method {
- get {
- return ResourceManager.GetString("SharpenProcessor_Method", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Select sharpening algorithm 的本地化字符串。
- ///
- public static string SharpenProcessor_Method_Desc {
- get {
- return ResourceManager.GetString("SharpenProcessor_Method_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Sharpen 的本地化字符串。
- ///
- public static string SharpenProcessor_Name {
- get {
- return ResourceManager.GetString("SharpenProcessor_Name", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Strength 的本地化字符串。
- ///
- public static string SharpenProcessor_Strength {
- get {
- return ResourceManager.GetString("SharpenProcessor_Strength", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Strength of sharpening effect 的本地化字符串。
- ///
- public static string SharpenProcessor_Strength_Desc {
- get {
- return ResourceManager.GetString("SharpenProcessor_Strength_Desc", resourceCulture);
- }
- }
-
- ///
- /// 查找类似 Edge enhancement and denoising 的本地化字符串。
- ///
- public static string ShockFilterProcessor_Description {
- get {
- return ResourceManager.GetString("ShockFilterProcessor_Description", resourceCulture);
+ return ResourceManager.GetString("SubPixelZoomProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 Time Step 的本地化字符串。
+ /// 查找类似 插值方法 的本地化字符串。
///
- public static string ShockFilterProcessor_Dt {
+ public static string SubPixelZoomProcessor_Interpolation {
get {
- return ResourceManager.GetString("ShockFilterProcessor_Dt", resourceCulture);
+ return ResourceManager.GetString("SubPixelZoomProcessor_Interpolation", resourceCulture);
}
}
///
- /// 查找类似 Evolution time step 的本地化字符串。
+ /// 查找类似 插值方法:Nearest(最近邻)、Bilinear(双线性)、Bicubic(双三次)、Lanczos(最高质量) 的本地化字符串。
///
- public static string ShockFilterProcessor_Dt_Desc {
+ public static string SubPixelZoomProcessor_Interpolation_Desc {
get {
- return ResourceManager.GetString("ShockFilterProcessor_Dt_Desc", resourceCulture);
+ return ResourceManager.GetString("SubPixelZoomProcessor_Interpolation_Desc", resourceCulture);
}
}
///
- /// 查找类似 Iterations 的本地化字符串。
+ /// 查找类似 亚像素放大 的本地化字符串。
///
- public static string ShockFilterProcessor_Iterations {
+ public static string SubPixelZoomProcessor_Name {
get {
- return ResourceManager.GetString("ShockFilterProcessor_Iterations", resourceCulture);
+ return ResourceManager.GetString("SubPixelZoomProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 Number of filter iterations 的本地化字符串。
+ /// 查找类似 放大倍率 的本地化字符串。
///
- public static string ShockFilterProcessor_Iterations_Desc {
+ public static string SubPixelZoomProcessor_ScaleFactor {
get {
- return ResourceManager.GetString("ShockFilterProcessor_Iterations_Desc", resourceCulture);
+ return ResourceManager.GetString("SubPixelZoomProcessor_ScaleFactor", resourceCulture);
}
}
///
- /// 查找类似 Shock Filter 的本地化字符串。
+ /// 查找类似 放大倍率,支持小数(如1.5、2.3) 的本地化字符串。
///
- public static string ShockFilterProcessor_Name {
+ public static string SubPixelZoomProcessor_ScaleFactor_Desc {
get {
- return ResourceManager.GetString("ShockFilterProcessor_Name", resourceCulture);
+ return ResourceManager.GetString("SubPixelZoomProcessor_ScaleFactor_Desc", resourceCulture);
}
}
///
- /// 查找类似 Threshold 的本地化字符串。
+ /// 查找类似 放大后锐化 的本地化字符串。
///
- public static string ShockFilterProcessor_Theta {
+ public static string SubPixelZoomProcessor_SharpenAfter {
get {
- return ResourceManager.GetString("ShockFilterProcessor_Theta", resourceCulture);
+ return ResourceManager.GetString("SubPixelZoomProcessor_SharpenAfter", resourceCulture);
}
}
///
- /// 查找类似 Edge detection threshold 的本地化字符串。
+ /// 查找类似 放大后进行锐化补偿,抵消插值产生的模糊 的本地化字符串。
///
- public static string ShockFilterProcessor_Theta_Desc {
+ public static string SubPixelZoomProcessor_SharpenAfter_Desc {
get {
- return ResourceManager.GetString("ShockFilterProcessor_Theta_Desc", resourceCulture);
+ return ResourceManager.GetString("SubPixelZoomProcessor_SharpenAfter_Desc", resourceCulture);
}
}
///
- /// 查找类似 Detect image edges using Sobel operator 的本地化字符串。
+ /// 查找类似 锐化强度 的本地化字符串。
///
- public static string SobelEdgeProcessor_Description {
+ public static string SubPixelZoomProcessor_SharpenStrength {
get {
- return ResourceManager.GetString("SobelEdgeProcessor_Description", resourceCulture);
+ return ResourceManager.GetString("SubPixelZoomProcessor_SharpenStrength", resourceCulture);
}
}
///
- /// 查找类似 Detection Direction 的本地化字符串。
+ /// 查找类似 放大后锐化的强度 的本地化字符串。
///
- public static string SobelEdgeProcessor_Direction {
+ public static string SubPixelZoomProcessor_SharpenStrength_Desc {
get {
- return ResourceManager.GetString("SobelEdgeProcessor_Direction", resourceCulture);
+ return ResourceManager.GetString("SubPixelZoomProcessor_SharpenStrength_Desc", resourceCulture);
}
}
///
- /// 查找类似 Select edge detection direction 的本地化字符串。
+ /// 查找类似 基于深度学习的超分辨率重建,使用EDSR/FSRCNN模型 的本地化字符串。
///
- public static string SobelEdgeProcessor_Direction_Desc {
+ public static string SuperResolutionProcessor_Description {
get {
- return ResourceManager.GetString("SobelEdgeProcessor_Direction_Desc", resourceCulture);
+ return ResourceManager.GetString("SuperResolutionProcessor_Description", resourceCulture);
}
}
///
- /// 查找类似 Kernel Size 的本地化字符串。
+ /// 查找类似 模型 的本地化字符串。
///
- public static string SobelEdgeProcessor_KernelSize {
+ public static string SuperResolutionProcessor_Model {
get {
- return ResourceManager.GetString("SobelEdgeProcessor_KernelSize", resourceCulture);
+ return ResourceManager.GetString("SuperResolutionProcessor_Model", resourceCulture);
}
}
///
- /// 查找类似 Sobel operator kernel size (odd number) 的本地化字符串。
+ /// 查找类似 超分辨率模型:EDSR(高质量/较慢)或 FSRCNN(快速/轻量) 的本地化字符串。
///
- public static string SobelEdgeProcessor_KernelSize_Desc {
+ public static string SuperResolutionProcessor_Model_Desc {
get {
- return ResourceManager.GetString("SobelEdgeProcessor_KernelSize_Desc", resourceCulture);
+ return ResourceManager.GetString("SuperResolutionProcessor_Model_Desc", resourceCulture);
}
}
///
- /// 查找类似 Sobel Edge Detection 的本地化字符串。
+ /// 查找类似 超分辨率重建 (AI) 的本地化字符串。
///
- public static string SobelEdgeProcessor_Name {
+ public static string SuperResolutionProcessor_Name {
get {
- return ResourceManager.GetString("SobelEdgeProcessor_Name", resourceCulture);
+ return ResourceManager.GetString("SuperResolutionProcessor_Name", resourceCulture);
}
}
///
- /// 查找类似 Scale Factor 的本地化字符串。
+ /// 查找类似 放大倍率 的本地化字符串。
///
- public static string SobelEdgeProcessor_Scale {
+ public static string SuperResolutionProcessor_Scale {
get {
- return ResourceManager.GetString("SobelEdgeProcessor_Scale", resourceCulture);
+ return ResourceManager.GetString("SuperResolutionProcessor_Scale", resourceCulture);
}
}
///
- /// 查找类似 Scale factor for edge intensity 的本地化字符串。
+ /// 查找类似 放大倍率:2x、3x 或 4x 的本地化字符串。
///
- public static string SobelEdgeProcessor_Scale_Desc {
+ public static string SuperResolutionProcessor_Scale_Desc {
get {
- return ResourceManager.GetString("SobelEdgeProcessor_Scale_Desc", resourceCulture);
+ return ResourceManager.GetString("SuperResolutionProcessor_Scale_Desc", resourceCulture);
}
}
///
- /// 查找类似 Binarize image 的本地化字符串。
+ /// 查找类似 对图像进行二值化处理 的本地化字符串。
///
public static string ThresholdProcessor_Description {
get {
@@ -3537,7 +4246,7 @@ namespace XP.Common.Resources {
}
///
- /// 查找类似 Max Value 的本地化字符串。
+ /// 查找类似 最大值 的本地化字符串。
///
public static string ThresholdProcessor_MaxValue {
get {
@@ -3546,7 +4255,7 @@ namespace XP.Common.Resources {
}
///
- /// 查找类似 Pixels above threshold will be set to this value 的本地化字符串。
+ /// 查找类似 超过阈值的像素将被设置为此值 的本地化字符串。
///
public static string ThresholdProcessor_MaxValue_Desc {
get {
@@ -3555,7 +4264,7 @@ namespace XP.Common.Resources {
}
///
- /// 查找类似 Threshold Segmentation 的本地化字符串。
+ /// 查找类似 阈值分割 的本地化字符串。
///
public static string ThresholdProcessor_Name {
get {
@@ -3564,7 +4273,7 @@ namespace XP.Common.Resources {
}
///
- /// 查找类似 Threshold 的本地化字符串。
+ /// 查找类似 阈值 的本地化字符串。
///
public static string ThresholdProcessor_Threshold {
get {
@@ -3573,7 +4282,7 @@ namespace XP.Common.Resources {
}
///
- /// 查找类似 Binarization threshold, pixels above this value will be set to max value 的本地化字符串。
+ /// 查找类似 二值化阈值,像素值大于此值将被设为最大值 的本地化字符串。
///
public static string ThresholdProcessor_Threshold_Desc {
get {
@@ -3582,7 +4291,7 @@ namespace XP.Common.Resources {
}
///
- /// 查找类似 Use Otsu Auto Threshold 的本地化字符串。
+ /// 查找类似 使用Otsu自动阈值 的本地化字符串。
///
public static string ThresholdProcessor_UseOtsu {
get {
@@ -3591,12 +4300,211 @@ namespace XP.Common.Resources {
}
///
- /// 查找类似 When enabled, optimal threshold will be calculated automatically 的本地化字符串。
+ /// 查找类似 启用后将自动计算最佳阈值 的本地化字符串。
///
public static string ThresholdProcessor_UseOtsu_Desc {
get {
return ResourceManager.GetString("ThresholdProcessor_UseOtsu_Desc", resourceCulture);
}
}
+
+ ///
+ /// 查找类似 模糊核大小 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_BlurSize {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_BlurSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 高斯模糊核大小(奇数) 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_BlurSize_Desc {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_BlurSize_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 检测ROI内气泡并计算空隙率 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_Description {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最大阈值 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_MaxThreshold {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_MaxThreshold", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 气泡灰度上限 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_MaxThreshold_Desc {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_MaxThreshold_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 合并半径 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_MergeRadius {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_MergeRadius", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 相邻气泡合并的膨胀半径(0=不合并) 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_MergeRadius_Desc {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_MergeRadius_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最小阈值 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_MinThreshold {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_MinThreshold", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 气泡灰度下限 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_MinThreshold_Desc {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_MinThreshold_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 最小气泡面积 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_MinVoidArea {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_MinVoidArea", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 小于此面积的气泡将被忽略(像素) 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_MinVoidArea_Desc {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_MinVoidArea_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 空隙测量 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_Name {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 空隙率限值(%) 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_VoidLimit {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_VoidLimit", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 超过此限值判定为FAIL 的本地化字符串。
+ ///
+ public static string VoidMeasurementProcessor_VoidLimit_Desc {
+ get {
+ return ResourceManager.GetString("VoidMeasurementProcessor_VoidLimit_Desc", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 欢迎使用 XplorePlane X射线检测系统 的本地化字符串。
+ ///
+ public static string Welcome_Message {
+ get {
+ return ResourceManager.GetString("Welcome_Message", resourceCulture);
+ }
+ }
+ // 九点标定
+ public static string CalibrationToolTitle => ResourceManager.GetString("CalibrationToolTitle", resourceCulture) ?? "";
+ public static string CalibrationLoadImage => ResourceManager.GetString("CalibrationLoadImage", resourceCulture) ?? "";
+ public static string CalibrationLoadCsv => ResourceManager.GetString("CalibrationLoadCsv", resourceCulture) ?? "";
+ public static string CalibrationExecute => ResourceManager.GetString("CalibrationExecute", resourceCulture) ?? "";
+ public static string CalibrationSave => ResourceManager.GetString("CalibrationSave", resourceCulture) ?? "";
+ public static string CalibrationLoad => ResourceManager.GetString("CalibrationLoad", resourceCulture) ?? "";
+ public static string CalibrationShowWorld => ResourceManager.GetString("CalibrationShowWorld", resourceCulture) ?? "";
+ public static string CalibrationPointList => ResourceManager.GetString("CalibrationPointList", resourceCulture) ?? "";
+ public static string CalibrationPixelX => ResourceManager.GetString("CalibrationPixelX", resourceCulture) ?? "";
+ public static string CalibrationPixelY => ResourceManager.GetString("CalibrationPixelY", resourceCulture) ?? "";
+ public static string CalibrationWorldX => ResourceManager.GetString("CalibrationWorldX", resourceCulture) ?? "";
+ public static string CalibrationWorldY => ResourceManager.GetString("CalibrationWorldY", resourceCulture) ?? "";
+ public static string CalibrationStatusReady => ResourceManager.GetString("CalibrationStatusReady", resourceCulture) ?? "";
+ public static string CalibrationStatusImageLoaded => ResourceManager.GetString("CalibrationStatusImageLoaded", resourceCulture) ?? "";
+ public static string CalibrationStatusCsvLoaded => ResourceManager.GetString("CalibrationStatusCsvLoaded", resourceCulture) ?? "";
+ public static string CalibrationStatusSuccess => ResourceManager.GetString("CalibrationStatusSuccess", resourceCulture) ?? "";
+ public static string CalibrationStatusFailed => ResourceManager.GetString("CalibrationStatusFailed", resourceCulture) ?? "";
+ public static string CalibrationStatusSaved => ResourceManager.GetString("CalibrationStatusSaved", resourceCulture) ?? "";
+ public static string CalibrationStatusLoaded => ResourceManager.GetString("CalibrationStatusLoaded", resourceCulture) ?? "";
+ public static string CalibrationCoordinates => ResourceManager.GetString("CalibrationCoordinates", resourceCulture) ?? "";
+ public static string CalibrationErrorMinPoints => ResourceManager.GetString("CalibrationErrorMinPoints", resourceCulture) ?? "";
+ public static string CalibrationSuccessTitle => ResourceManager.GetString("CalibrationSuccessTitle", resourceCulture) ?? "";
+ public static string CalibrationSuccessMessage => ResourceManager.GetString("CalibrationSuccessMessage", resourceCulture) ?? "";
+ public static string CalibrationSaveSuccess => ResourceManager.GetString("CalibrationSaveSuccess", resourceCulture) ?? "";
+ public static string CalibrationLoadSuccess => ResourceManager.GetString("CalibrationLoadSuccess", resourceCulture) ?? "";
+ public static string CalibrationLoadFailed => ResourceManager.GetString("CalibrationLoadFailed", resourceCulture) ?? "";
+
+ // 棋盘格标定
+ public static string ChessboardToolTitle => ResourceManager.GetString("ChessboardToolTitle", resourceCulture) ?? "";
+ public static string ChessboardAddImages => ResourceManager.GetString("ChessboardAddImages", resourceCulture) ?? "";
+ public static string ChessboardClearImages => ResourceManager.GetString("ChessboardClearImages", resourceCulture) ?? "";
+ public static string ChessboardCalibrate => ResourceManager.GetString("ChessboardCalibrate", resourceCulture) ?? "";
+ public static string ChessboardSave => ResourceManager.GetString("ChessboardSave", resourceCulture) ?? "";
+ public static string ChessboardLoad => ResourceManager.GetString("ChessboardLoad", resourceCulture) ?? "";
+ public static string ChessboardUndistort => ResourceManager.GetString("ChessboardUndistort", resourceCulture) ?? "";
+ public static string ChessboardParameters => ResourceManager.GetString("ChessboardParameters", resourceCulture) ?? "";
+ public static string ChessboardWidth => ResourceManager.GetString("ChessboardWidth", resourceCulture) ?? "";
+ public static string ChessboardHeight => ResourceManager.GetString("ChessboardHeight", resourceCulture) ?? "";
+ public static string ChessboardSquareSize => ResourceManager.GetString("ChessboardSquareSize", resourceCulture) ?? "";
+ public static string ChessboardImageList => ResourceManager.GetString("ChessboardImageList", resourceCulture) ?? "";
+ public static string ChessboardStatusInfo => ResourceManager.GetString("ChessboardStatusInfo", resourceCulture) ?? "";
+ public static string ChessboardStatusReady => ResourceManager.GetString("ChessboardStatusReady", resourceCulture) ?? "";
+ public static string ChessboardStatusAdded => ResourceManager.GetString("ChessboardStatusAdded", resourceCulture) ?? "";
+ public static string ChessboardStatusCleared => ResourceManager.GetString("ChessboardStatusCleared", resourceCulture) ?? "";
+ public static string ChessboardStatusCalibrating => ResourceManager.GetString("ChessboardStatusCalibrating", resourceCulture) ?? "";
+ public static string ChessboardStatusSuccess => ResourceManager.GetString("ChessboardStatusSuccess", resourceCulture) ?? "";
+ public static string ChessboardStatusFailed => ResourceManager.GetString("ChessboardStatusFailed", resourceCulture) ?? "";
+ public static string ChessboardStatusSaved => ResourceManager.GetString("ChessboardStatusSaved", resourceCulture) ?? "";
+ public static string ChessboardStatusLoaded => ResourceManager.GetString("ChessboardStatusLoaded", resourceCulture) ?? "";
+ public static string ChessboardStatusUndistorted => ResourceManager.GetString("ChessboardStatusUndistorted", resourceCulture) ?? "";
+ public static string ChessboardStatusImageError => ResourceManager.GetString("ChessboardStatusImageError", resourceCulture) ?? "";
+ public static string ChessboardProgressPreparing => ResourceManager.GetString("ChessboardProgressPreparing", resourceCulture) ?? "";
+ public static string ChessboardProgressDetecting => ResourceManager.GetString("ChessboardProgressDetecting", resourceCulture) ?? "";
+ public static string ChessboardProgressCalibrating => ResourceManager.GetString("ChessboardProgressCalibrating", resourceCulture) ?? "";
+ public static string ChessboardProgressCalculating => ResourceManager.GetString("ChessboardProgressCalculating", resourceCulture) ?? "";
+ public static string ChessboardProgressComplete => ResourceManager.GetString("ChessboardProgressComplete", resourceCulture) ?? "";
+ public static string ChessboardProgressFailed => ResourceManager.GetString("ChessboardProgressFailed", resourceCulture) ?? "";
+ public static string ChessboardErrorMinImages => ResourceManager.GetString("ChessboardErrorMinImages", resourceCulture) ?? "";
+ public static string ChessboardErrorInsufficientValid => ResourceManager.GetString("ChessboardErrorInsufficientValid", resourceCulture) ?? "";
+ public static string ChessboardSaveSuccess => ResourceManager.GetString("ChessboardSaveSuccess", resourceCulture) ?? "";
+ public static string ChessboardLoadSuccess => ResourceManager.GetString("ChessboardLoadSuccess", resourceCulture) ?? "";
+ public static string ChessboardCalibrationComplete => ResourceManager.GetString("ChessboardCalibrationComplete", resourceCulture) ?? "";
+ public static string ChessboardImageError => ResourceManager.GetString("ChessboardImageError", resourceCulture) ?? "";
}
}
diff --git a/XP.Common/Resources/Resources.en-US.resx b/XP.Common/Resources/Resources.en-US.resx
index 48775f9..96d965f 100644
--- a/XP.Common/Resources/Resources.en-US.resx
+++ b/XP.Common/Resources/Resources.en-US.resx
@@ -375,7 +375,6 @@
Printer not found: {0}
PdfViewer - Printer not found
-
Contrast Adjustment
@@ -412,8 +411,6 @@
CLAHE contrast limit threshold
-
-
Band Pass Filter
@@ -444,8 +441,6 @@
Order of Butterworth filter
-
-
Contour Detection
@@ -494,8 +489,6 @@
Thickness of contour lines
-
-
Division Operation
@@ -520,8 +513,6 @@
Normalize result to 0-255 range
-
-
Gamma Correction
@@ -540,8 +531,6 @@
Output gain coefficient
-
-
Gaussian Blur
@@ -560,8 +549,6 @@
Standard deviation of Gaussian kernel, controls blur amount
-
-
Morphology Processing
@@ -586,8 +573,6 @@
Number of times to repeat morphological operation
-
-
Shock Filter
@@ -612,8 +597,6 @@
Evolution time step
-
-
Threshold Segmentation
@@ -638,8 +621,6 @@
When enabled, optimal threshold will be calculated automatically
-
-
Comprehensive Filter
@@ -694,64 +675,48 @@
Order of Butterworth filter
-
-
Gaussian Filter
Smooth image and reduce Gaussian noise while preserving edges
-
-
Median Filter
Remove salt-and-pepper noise effectively
-
-
Mean Filter
Simple averaging smoothing filter
-
-
Bilateral Filter
Edge-preserving smoothing filter
-
-
Low Pass Filter
Remove high frequency noise in frequency domain
-
-
High Pass Filter
Edge enhancement in frequency domain
-
-
Band Pass Filter
Preserve image information within specified frequency range
-
-
Median Filter
@@ -764,8 +729,6 @@
Size of the filter kernel (must be odd)
-
-
Mean Filter
@@ -778,8 +741,6 @@
Size of the filter kernel (must be odd)
-
-
Bilateral Filter
@@ -804,8 +765,6 @@
Filter sigma in the coordinate space
-
-
Low Pass Filter
@@ -818,8 +777,6 @@
Cutoff frequency for low pass filter
-
-
High Pass Filter
@@ -832,8 +789,6 @@
Cutoff frequency for high pass filter
-
-
Grayscale Conversion
@@ -846,8 +801,6 @@
Method for grayscale conversion
-
-
Sharpen
@@ -872,8 +825,6 @@
Size of sharpening kernel (must be odd)
-
-
Histogram Equalization
@@ -898,8 +849,6 @@
Tile size for CLAHE
-
-
Sobel Edge Detection
@@ -924,8 +873,6 @@
Scale factor for edge intensity
-
-
Kirsch Edge Detection
@@ -944,8 +891,6 @@
Scale factor for edge intensity
-
-
Horizontal Edge Detection
@@ -970,8 +915,6 @@
Edge detection threshold
-
-
Retinex Shadow Correction
@@ -1014,8 +957,6 @@
Output offset value
-
-
HDR Enhancement
@@ -1064,8 +1005,6 @@
Bias for adaptive logarithmic and Drago mapping, controls dark/bright balance
-
-
Mirror
@@ -1078,8 +1017,6 @@
Flip direction: Horizontal (left-right), Vertical (up-down), Both (180° rotation)
-
-
Rotate
@@ -1110,8 +1047,6 @@
Interpolation method: Nearest (fast), Bilinear (smooth), Bicubic (high quality)
-
-
Pseudo Color Rendering
@@ -1142,8 +1077,6 @@
Reverse the color mapping direction
-
-
Electronic Film Effect
@@ -1186,8 +1119,6 @@
Edge enhancement strength to simulate film sharpening, 0 to disable
-
-
Sub-Pixel Zoom
@@ -1218,8 +1149,6 @@
Strength of post-zoom sharpening
-
-
Super Resolution (AI)
@@ -1238,8 +1167,6 @@
Upscaling factor: 2x, 3x, or 4x
-
-
Color Layer Separation
@@ -1270,8 +1197,6 @@
0 = show all layers, 1~N = show only the specified layer (white) with others black
-
-
Hierarchical Enhancement
@@ -1314,16 +1239,12 @@
Limit detail amplitude to prevent over-enhancement artifacts. 0 = no limit
-
-
Histogram Overlay
Compute grayscale histogram and overlay it on the top-left corner of the image with statistics
-
-
Ellipse Detection
@@ -1384,8 +1305,6 @@
Thickness of ellipse drawing lines
-
-
Line Measurement
@@ -1440,8 +1359,6 @@
Display distance label on the measurement line
-
-
Via Fill Rate (Tilted Geometric)
@@ -1460,8 +1377,6 @@
Thickness of ROI ellipse lines
-
-
BGA Void Rate (Auto)
@@ -1528,8 +1443,6 @@
Thickness of contour lines
-
-
Point-to-Line Distance
@@ -1554,16 +1467,12 @@
Thickness of drawing lines
-
-
Angle Measurement
Measure angle between two rays sharing a common vertex
-
-
Void Measurement
@@ -1606,8 +1515,6 @@
Void rate above this limit is classified as FAIL
-
-
Emboss Pseudo-3D
@@ -1638,4 +1545,262 @@
Gray level offset for flat areas (128=mid-gray base)
+
+ Bitwise OR Operation
+
+
+ Perform bitwise OR operation on images, supporting OR operation with fixed values, which can be used for image merging and mask operations.
+
+
+ Value
+
+
+ Value for bitwise OR operation with each pixel of the image (0–255)
+
+
+ Differential Operation
+
+
+ Perform differential operation on images, supporting horizontal, vertical and diagonal differentiation, which can be used for edge detection.
+
+
+ Direction
+
+
+ Differential Directions: Horizontal, Vertical, Both (Gradient Magnitude)
+
+
+ Normalized Output
+
+
+ Normalize the result to the range of 0-255.
+
+
+ Multiplication Operation
+
+
+ Perform multiplication operations on image pixel values, commonly used for image enhancement and contrast adjustment.
+
+
+ Multiplier
+
+
+ Pixel values are multiplied by this coefficient (0.1–10.0).
+
+
+ Normalized Output
+
+
+ Normalize the result to the range of 0–255
+
+
+ Integral Calculation
+
+
+ Compute the integral image (cumulative sum) for fast region summation.
+
+
+ Normalized Output
+
+
+ Normalize the result to the range of 0–255
+
+
+
+ Nine-Point Calibration Tool
+
+
+ Load Image
+
+
+ Load from CSV
+
+
+ Calibrate
+
+
+ Save Calibration
+
+
+ Load Calibration
+
+
+ Show World Coordinates
+
+
+ Calibration Points
+
+
+ Pixel X
+
+
+ Pixel Y
+
+
+ World X
+
+
+ World Y
+
+
+ Ready
+
+
+ Status: Image loaded
+{0}
+Right-click on image to view coordinate conversion
+
+
+ Status: Loaded {0} calibration points from CSV
+{1}
+
+
+ Status: Calibration successful! Using {0} points
+
+
+ Status: Calibration failed
+
+
+ Status: Calibration saved to
+{0}
+
+
+ Status: Calibration loaded from
+{0}
+
+
+ Pixel coordinates: ({0:F2}, {1:F2})
+World coordinates: ({2:F2}, {3:F2})
+
+
+ At least 4 calibration points required!
+
+
+ Success
+
+
+ Calibration completed!
+
+
+ Save successful!
+
+
+ Load successful!
+
+
+ Load failed!
+
+
+
+ Chessboard Calibration Tool
+
+
+ Add Images
+
+
+ Clear List
+
+
+ Calibrate
+
+
+ Save Calibration
+
+
+ Load Calibration
+
+
+ Undistort Image
+
+
+ Chessboard Parameters
+
+
+ Inner Corners Width:
+
+
+ Inner Corners Height:
+
+
+ Square Size (mm):
+
+
+ Calibration Images
+
+
+ Status Information
+
+
+ Ready
+
+
+ Added {0} images
+
+
+ Image list cleared
+
+
+ Calibrating, please wait...
+
+
+ Calibration successful!
+Overall reprojection error: {0:F4} pixels
+
+{1}
+
+
+ Calibration failed: {0}
+
+
+ Calibration saved:
+{0}
+
+
+ Calibration loaded:
+{0}
+
+
+ Image undistorted:
+{0}
+
+
+ Image {0}
+Reprojection error: {1:F4} pixels
+
+
+ Preparing calibration...
+
+
+ Detecting corners ({0}/{1})
+
+
+ Performing camera calibration...
+
+
+ Calculating reprojection errors ({0}/{1})
+
+
+ Calibration complete
+
+
+ Calibration failed
+
+
+ At least 3 images required!
+
+
+ Insufficient valid images, need at least 3, current {0}
+
+
+ Save successful!
+
+
+ Load successful!
+
+
+ Calibration completed!
+
+
+ Image{0}: {1:F4} pixels
+
\ No newline at end of file
diff --git a/XP.Common/Resources/Resources.resx b/XP.Common/Resources/Resources.resx
index 9ca8095..390fd24 100644
--- a/XP.Common/Resources/Resources.resx
+++ b/XP.Common/Resources/Resources.resx
@@ -1571,4 +1571,270 @@
平坦区域的灰度基底(128=中灰)
+
+
+
+ 或运算
+
+
+ 对图像进行按位或运算,支持与固定值或运算,可用于图像合并和掩码操作
+
+
+ 值
+
+
+ 与图像每个像素进行OR运算的值(0-255)
+
+
+
+
+ 差分运算
+
+
+ 对图像进行差分运算,支持水平、垂直和对角线差分,可用于边缘检测
+
+
+ 方向
+
+
+ 差分方向:Horizontal(水平)、Vertical(垂直)、Both(梯度幅值)
+
+
+ 归一化输出
+
+
+ 将结果归一化到0-255范围
+
+
+
+
+ 乘法运算
+
+
+ 对图像像素值进行乘法运算,常用于图像增强和对比度调整
+
+
+ 乘数
+
+
+ 像素值乘以此系数(0.1-10.0)
+
+
+ 归一化输出
+
+
+ 将结果归一化到0-255范围
+
+
+
+
+ 积分运算
+
+
+ 计算积分图像(累加和),用于快速区域求和
+
+
+ 归一化输出
+
+
+ 将结果归一化到0-255范围
+
+
+
+ 九点标定工具
+
+
+ 加载图像
+
+
+ 从CSV加载
+
+
+ 执行标定
+
+
+ 保存标定
+
+
+ 加载标定
+
+
+ 显示世界坐标
+
+
+ 标定点列表
+
+
+ 像素X
+
+
+ 像素Y
+
+
+ 世界X
+
+
+ 世界Y
+
+
+ 就绪
+
+
+ 状态:图像已加载
+{0}
+右键点击图像查看坐标转换
+
+
+ 状态:已从CSV加载 {0} 个标定点
+{1}
+
+
+ 状态:标定成功!使用 {0} 个点
+
+
+ 状态:标定失败
+
+
+ 状态:标定文件已保存到
+{0}
+
+
+ 状态:标定文件已加载
+{0}
+
+
+ 像素坐标: ({0:F2}, {1:F2})
+世界坐标: ({2:F2}, {3:F2})
+
+
+ 至少需要4个标定点!
+
+
+ 成功
+
+
+ 标定完成!
+
+
+ 保存成功!
+
+
+ 加载成功!
+
+
+ 加载失败!
+
+
+
+ 棋盘格畸变校正工具
+
+
+ 添加图像
+
+
+ 清空列表
+
+
+ 执行标定
+
+
+ 保存标定
+
+
+ 加载标定
+
+
+ 校正图像
+
+
+ 棋盘格参数
+
+
+ 内角点宽度:
+
+
+ 内角点高度:
+
+
+ 方格尺寸(mm):
+
+
+ 标定图像列表
+
+
+ 状态信息
+
+
+ 就绪
+
+
+ 已添加 {0} 张图像
+
+
+ 已清空图像列表
+
+
+ 正在标定,请稍候...
+
+
+ 标定成功!
+总体重投影误差: {0:F4} 像素
+
+{1}
+
+
+ 标定失败: {0}
+
+
+ 标定已保存:
+{0}
+
+
+ 标定已加载:
+{0}
+
+
+ 已校正图像:
+{0}
+
+
+ 图像 {0}
+重投影误差: {1:F4} 像素
+
+
+ 准备标定...
+
+
+ 检测角点 ({0}/{1})
+
+
+ 执行相机标定...
+
+
+ 计算重投影误差 ({0}/{1})
+
+
+ 标定完成
+
+
+ 标定失败
+
+
+ 至少需要3张图像!
+
+
+ 有效图像不足,需要至少3张,当前{0}张
+
+
+ 保存成功!
+
+
+ 加载成功!
+
+
+ 标定完成!
+
+
+ 图像{0}: {1:F4} 像素
+
\ No newline at end of file
diff --git a/XP.Common/Resources/Resources.zh-CN.resx b/XP.Common/Resources/Resources.zh-CN.resx
index 1e27d40..cc06405 100644
--- a/XP.Common/Resources/Resources.zh-CN.resx
+++ b/XP.Common/Resources/Resources.zh-CN.resx
@@ -375,7 +375,7 @@
打印机未找到:{0}
PdfViewer - 打印机未找到 | Printer not found
-
+
对比度调整
@@ -1077,8 +1077,6 @@
反转色彩映射方向
-
-
电子胶片效果
@@ -1121,8 +1119,6 @@
边缘增强强度,模拟胶片锐化效果,0为关闭
-
-
亚像素放大
@@ -1153,8 +1149,6 @@
放大后锐化的强度
-
-
超分辨率重建 (AI)
@@ -1173,8 +1167,6 @@
放大倍率:2x、3x 或 4x
-
-
色彩分层
@@ -1205,8 +1197,6 @@
0 = 显示全部层,1~N = 只显示指定层(白色),其余为黑色
-
-
层次增强
@@ -1249,16 +1239,12 @@
限制细节幅度,防止过增强产生伪影。0=不限制
-
-
直方图叠加
计算灰度直方图,以蓝色柱状图叠加到图像左上角,并输出统计表格
-
-
椭圆检测
@@ -1319,8 +1305,6 @@
绘制椭圆的线条粗细
-
-
直线测量
@@ -1375,8 +1359,6 @@
在测量线上显示距离标注
-
-
通孔填锡率
@@ -1395,8 +1377,6 @@
ROI椭圆线条粗细
-
-
BGA空洞率检测(自动)
@@ -1463,8 +1443,6 @@
轮廓线条粗细
-
-
点到直线距离
@@ -1489,16 +1467,12 @@
绘制线条粗细
-
-
角度测量
测量共端点两条射线的夹角
-
-
空隙测量
@@ -1571,4 +1545,262 @@
平坦区域的灰度基底(128=中灰)
+
+ 或运算
+
+
+ 对图像进行按位或运算,支持与固定值或运算,可用于图像合并和掩码操作
+
+
+ 值
+
+
+ 与图像每个像素进行OR运算的值(0-255)
+
+
+ 差分运算
+
+
+ 对图像进行差分运算,支持水平、垂直和对角线差分,可用于边缘检测
+
+
+ 方向
+
+
+ 差分方向:Horizontal(水平)、Vertical(垂直)、Both(梯度幅值)
+
+
+ 归一化输出
+
+
+ 将结果归一化到0-255范围
+
+
+ 乘法运算
+
+
+ 对图像像素值进行乘法运算,常用于图像增强和对比度调整
+
+
+ 乘数
+
+
+ 像素值乘以此系数(0.1-10.0)
+
+
+ 归一化输出
+
+
+ 将结果归一化到0-255范围
+
+
+ 积分运算
+
+
+ 计算积分图像(累加和),用于快速区域求和
+
+
+ 归一化输出
+
+
+ 将结果归一化到0-255范围
+
+
+
+ 九点标定工具
+
+
+ 加载图像
+
+
+ 从CSV加载
+
+
+ 执行标定
+
+
+ 保存标定
+
+
+ 加载标定
+
+
+ 显示世界坐标
+
+
+ 标定点列表
+
+
+ 像素X
+
+
+ 像素Y
+
+
+ 世界X
+
+
+ 世界Y
+
+
+ 就绪
+
+
+ 状态:图像已加载
+{0}
+右键点击图像查看坐标转换
+
+
+ 状态:已从CSV加载 {0} 个标定点
+{1}
+
+
+ 状态:标定成功!使用 {0} 个点
+
+
+ 状态:标定失败
+
+
+ 状态:标定文件已保存到
+{0}
+
+
+ 状态:标定文件已加载
+{0}
+
+
+ 像素坐标: ({0:F2}, {1:F2})
+世界坐标: ({2:F2}, {3:F2})
+
+
+ 至少需要4个标定点!
+
+
+ 成功
+
+
+ 标定完成!
+
+
+ 保存成功!
+
+
+ 加载成功!
+
+
+ 加载失败!
+
+
+
+ 棋盘格畸变校正工具
+
+
+ 添加图像
+
+
+ 清空列表
+
+
+ 执行标定
+
+
+ 保存标定
+
+
+ 加载标定
+
+
+ 校正图像
+
+
+ 棋盘格参数
+
+
+ 内角点宽度:
+
+
+ 内角点高度:
+
+
+ 方格尺寸(mm):
+
+
+ 标定图像列表
+
+
+ 状态信息
+
+
+ 就绪
+
+
+ 已添加 {0} 张图像
+
+
+ 已清空图像列表
+
+
+ 正在标定,请稍候...
+
+
+ 标定成功!
+总体重投影误差: {0:F4} 像素
+
+{1}
+
+
+ 标定失败: {0}
+
+
+ 标定已保存:
+{0}
+
+
+ 标定已加载:
+{0}
+
+
+ 已校正图像:
+{0}
+
+
+ 图像 {0}
+重投影误差: {1:F4} 像素
+
+
+ 准备标定...
+
+
+ 检测角点 ({0}/{1})
+
+
+ 执行相机标定...
+
+
+ 计算重投影误差 ({0}/{1})
+
+
+ 标定完成
+
+
+ 标定失败
+
+
+ 至少需要3张图像!
+
+
+ 有效图像不足,需要至少3张,当前{0}张
+
+
+ 保存成功!
+
+
+ 加载成功!
+
+
+ 标定完成!
+
+
+ 图像{0}: {1:F4} 像素
+
\ No newline at end of file
diff --git a/XP.Common/Resources/Resources.zh-TW.resx b/XP.Common/Resources/Resources.zh-TW.resx
index 54a8c9d..d2db67d 100644
--- a/XP.Common/Resources/Resources.zh-TW.resx
+++ b/XP.Common/Resources/Resources.zh-TW.resx
@@ -375,7 +375,7 @@
印表機未找到:{0}
PdfViewer - 印表機未找到 | Printer not found
-
+
对比度调整
@@ -1077,8 +1077,6 @@
反转色彩映射方向
-
-
电子胶片效果
@@ -1121,8 +1119,6 @@
边缘增强强度,模拟胶片锐化效果,0为关闭
-
-
亚像素放大
@@ -1153,8 +1149,6 @@
放大后锐化的强度
-
-
超分辨率重建 (AI)
@@ -1173,8 +1167,6 @@
放大倍率:2x、3x 或 4x
-
-
色彩分层
@@ -1205,8 +1197,6 @@
0 = 显示全部层,1~N = 只显示指定层(白色),其余为黑色
-
-
层次增强
@@ -1249,16 +1239,12 @@
限制细节幅度,防止过增强产生伪影。0=不限制
-
-
直方图叠加
计算灰度直方图,以蓝色柱状图叠加到图像左上角,并输出统计表格
-
-
椭圆检测
@@ -1319,8 +1305,6 @@
绘制椭圆的线条粗细
-
-
直线测量
@@ -1375,8 +1359,6 @@
在测量线上显示距离标注
-
-
通孔填锡率
@@ -1395,8 +1377,6 @@
ROI椭圆线条粗细
-
-
BGA空洞率检测(自动)
@@ -1463,8 +1443,6 @@
轮廓线条粗细
-
-
点到直线距离
@@ -1489,16 +1467,12 @@
绘制线条粗细
-
-
角度测量
测量共端点两条射线的夹角
-
-
空隙测量
@@ -1571,4 +1545,262 @@
平坦区域的灰度基底(128=中灰)
+
+ 或运算
+
+
+ 对图像进行按位或运算,支持与固定值或运算,可用于图像合并和掩码操作
+
+
+ 值
+
+
+ 与图像每个像素进行OR运算的值(0-255)
+
+
+ 差分运算
+
+
+ 对图像进行差分运算,支持水平、垂直和对角线差分,可用于边缘检测
+
+
+ 方向
+
+
+ 差分方向:Horizontal(水平)、Vertical(垂直)、Both(梯度幅值)
+
+
+ 归一化输出
+
+
+ 将结果归一化到0-255范围
+
+
+ 乘法运算
+
+
+ 对图像像素值进行乘法运算,常用于图像增强和对比度调整
+
+
+ 乘数
+
+
+ 像素值乘以此系数(0.1-10.0)
+
+
+ 归一化输出
+
+
+ 将结果归一化到0-255范围
+
+
+ 积分运算
+
+
+ 计算积分图像(累加和),用于快速区域求和
+
+
+ 归一化输出
+
+
+ 将结果归一化到0-255范围
+
+
+
+ 九点标定工具
+
+
+ 加载图像
+
+
+ 从CSV加载
+
+
+ 执行标定
+
+
+ 保存标定
+
+
+ 加载标定
+
+
+ 显示世界坐标
+
+
+ 标定点列表
+
+
+ 像素X
+
+
+ 像素Y
+
+
+ 世界X
+
+
+ 世界Y
+
+
+ 就绪
+
+
+ 状态:图像已加载
+{0}
+右键点击图像查看坐标转换
+
+
+ 状态:已从CSV加载 {0} 个标定点
+{1}
+
+
+ 状态:标定成功!使用 {0} 个点
+
+
+ 状态:标定失败
+
+
+ 状态:标定文件已保存到
+{0}
+
+
+ 状态:标定文件已加载
+{0}
+
+
+ 像素坐标: ({0:F2}, {1:F2})
+世界坐标: ({2:F2}, {3:F2})
+
+
+ 至少需要4个标定点!
+
+
+ 成功
+
+
+ 标定完成!
+
+
+ 保存成功!
+
+
+ 加载成功!
+
+
+ 加载失败!
+
+
+
+ 棋盘格畸变校正工具
+
+
+ 添加图像
+
+
+ 清空列表
+
+
+ 执行标定
+
+
+ 保存标定
+
+
+ 加载标定
+
+
+ 校正图像
+
+
+ 棋盘格参数
+
+
+ 内角点宽度:
+
+
+ 内角点高度:
+
+
+ 方格尺寸(mm):
+
+
+ 标定图像列表
+
+
+ 状态信息
+
+
+ 就绪
+
+
+ 已添加 {0} 张图像
+
+
+ 已清空图像列表
+
+
+ 正在标定,请稍候...
+
+
+ 标定成功!
+总体重投影误差: {0:F4} 像素
+
+{1}
+
+
+ 标定失败: {0}
+
+
+ 标定已保存:
+{0}
+
+
+ 标定已加载:
+{0}
+
+
+ 已校正图像:
+{0}
+
+
+ 图像 {0}
+重投影误差: {1:F4} 像素
+
+
+ 准备标定...
+
+
+ 检测角点 ({0}/{1})
+
+
+ 执行相机标定...
+
+
+ 计算重投影误差 ({0}/{1})
+
+
+ 标定完成
+
+
+ 标定失败
+
+
+ 至少需要3张图像!
+
+
+ 有效图像不足,需要至少3张,当前{0}张
+
+
+ 保存成功!
+
+
+ 加载成功!
+
+
+ 标定完成!
+
+
+ 图像{0}: {1:F4} 像素
+
\ No newline at end of file