Camera Information System
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
649 B

namespace Cis.Application.Core.Component.MarkSeacher;
public class YuShiMarkSearcher : MarkSearcherBase
{
public YuShiMarkSearcher(CameraCalcParams cameraCalcParams) : base(cameraCalcParams)
{
}
#region Implement
protected override double ConvertPanPosToAngle(double panPos)
{
throw new NotImplementedException();
}
protected override double ConvertTiltPosToAngle(double tiltPos, double tiltMinPos = 0)
{
throw new NotImplementedException();
}
protected override double GetZoomTag(double zoomPos)
{
throw new NotImplementedException();
}
#endregion Implement
}