| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TeamAAS_VP.Models.Calibration
- {
- public class FixedUpCameraFindP0Info : BindableBase
- {
- private Guid _CameraId;
- /// <summary>
- /// 下相机的id
- /// </summary>
- public Guid CameraId
- {
- get { return _CameraId; }
- set { SetProperty(ref _CameraId, value); }
- }
- private string _CameraName;
- /// <summary>
- /// 相机名称
- /// </summary>
- public string CameraName
- {
- get { return _CameraName; }
- set { SetProperty(ref _CameraName, value); }
- }
- private Guid _CalibrationId;
- /// <summary>
- /// 校准ID
- /// </summary>
- public Guid CalibrationId
- {
- get { return _CalibrationId; }
- set { SetProperty(ref _CalibrationId, value); }
- }
- private string _CalibrationName;
- /// <summary>
- /// 校准名称
- /// </summary>
- public string CalibrationName
- {
- get { return _CalibrationName; }
- set { SetProperty(ref _CalibrationName, value); }
- }
- private float _ExposureTime;
- /// <summary>
- /// 相机曝光时间
- /// </summary>
- public float ExposureTime
- {
- get { return _ExposureTime; }
- set { SetProperty(ref _ExposureTime, value); }
- }
- private float _Gain;
- /// <summary>
- /// 相机增益
- /// </summary>
- public float Gain
- {
- get { return _Gain; }
- set { SetProperty(ref _Gain, value); }
- }
- public FixedUpCameraFindP0Info()
- {
- }
- public FixedUpCameraFindP0Info(Guid cameraId, string cameraName, Guid calibrationId, string calibrationName, float exposureTime, float gain)
- {
- CameraId = cameraId;
- CameraName = cameraName;
- CalibrationId = calibrationId;
- CalibrationName = calibrationName;
- ExposureTime = exposureTime;
- Gain = gain;
- }
- }
- }
|