1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using AI.DiagSystem;
- namespace WingAIDiagnosisService.Manage
- {
- /// <summary>
- /// vid pixel to physical deta
- /// </summary>
- public class PixelSpacing
- {
- private double _physicalDeltaY = 1.0;
- private double _physicalDeltaX = 1.0;
- /// <summary>
- /// Delta X
- /// </summary>
- public double PhysicalDeltaX
- {
- get => _physicalDeltaX;
- set => _physicalDeltaX = value;
- }
- /// <summary>
- ///Delta Y
- /// </summary>
- public double PhysicalDeltaY
- {
- get => _physicalDeltaY;
- set => _physicalDeltaY = value;
- }
- public PixelSpacing(double physicalDeltaX, double physicalDeltaY)
- {
- _physicalDeltaX = physicalDeltaX;
- _physicalDeltaY = physicalDeltaY;
- }
- public PixelSpacing()
- {
- }
- }
- }
|