namespace Cis.Application.Core; /// /// 相机 Ptz 信息 /// public class CameraCalcInfo { /// /// 图像的宽度 /// public int ImageWidth { get; set; } = 1920; /// /// 图像的宽度 /// public int ImageHeight { get; set; } = 1080; /// /// Pan /// public double Pan { get; set; } /// /// Tilt /// public double Tilt { get; set; } /// /// Zoom /// public double Zoom { get; set; } }