We are developpeing a camera driver that control PTZ by overriding MoveStart().
We checked the operation using the sample PTZandPresets.
The sample uses PTZMoveStartCommand with PTZMoveStartCommandData2.
Is the description about Zoom in PTZMoveStartCommandData2 correct?
When I check the operation with Smart Client, the value of Zooon seems to be the opposite.
Zoom in : 1
Zoom out : -1
//zoom out; half speed:
data.Pan = 0; data.Tilt = 0; data.Zoom = 1; data.ZoomSpeed = 0.5;
//zoom in; full speed:
data.Pan = 0; data.Tilt = 0; data.Zoom = -1; data.ZoomSpeed = 1;
