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.
 
 
 
 

29 lines
683 B

using System.Drawing;
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 PointF GetFOfMatrixByZoomPos(double zoomPos)
{
throw new NotImplementedException();
}
#endregion Implement
}