19 lines
342 B
C#
19 lines
342 B
C#
|
|
namespace SHH.CameraSdk.HikFeatures;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 云台动作枚举
|
|||
|
|
/// </summary>
|
|||
|
|
public enum PtzAction
|
|||
|
|
{
|
|||
|
|
Up,
|
|||
|
|
Down,
|
|||
|
|
Left,
|
|||
|
|
Right,
|
|||
|
|
ZoomIn, // 放大
|
|||
|
|
ZoomOut, // 缩小
|
|||
|
|
FocusNear, // 聚焦近
|
|||
|
|
FocusFar, // 聚焦远
|
|||
|
|
IrisOpen, // 光圈大
|
|||
|
|
IrisClose, // 光圈小
|
|||
|
|
Wiper, // 雨刷
|
|||
|
|
}
|