namespace XP.Calibration.Models; /// /// 完整几何校准选项 | Options for full geometric calibration /// public class FullCalibrationOptions { /// 是否优化探测器偏移 offDetecU/V public bool OptimizeDetectorOffset { get; set; } = false; /// 是否优化 DSO/DSD 距离 public bool OptimizeDistances { get; set; } = false; /// LM 最大迭代次数 public int MaxIterations { get; set; } = 5000; /// 收敛阈值 public double Tolerance { get; set; } = 1e-16; }