using XP.Hardware.Detector.Abstractions.Enums; namespace XP.Hardware.Detector.Config { /// /// 软件模拟探测器配置 | Simulated detector configuration /// public class SimulatedDetectorConfig : DetectorConfig { public SimulatedDetectorConfig() { Type = DetectorType.Simulated; } /// /// 合成帧宽度(像素)| Synthetic frame width (pixels) /// public int Width { get; set; } = 2800; /// /// 合成帧高度(像素)| Synthetic frame height (pixels) /// public int Height { get; set; } = 2800; /// /// 模拟帧率(帧/秒)| Simulated frame rate (fps) /// public double FrameRateFps { get; set; } = 5.0; } }