00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00018
00019
00020
00021 #ifndef __MX_ISUPPORTSREMOTEPTZ_H__
00022 #define __MX_ISUPPORTSREMOTEPTZ_H__
00023
00024
00025
00026 #define MX_ISUPPORTSREMOTEPTZ_ID "ISupportsRemotePTZ"
00027
00028
00029
00030 #include "IInterface.h"
00031
00032
00033 namespace mx {
00034
00036
00039 class ISupportsRemotePTZ : virtual IInterface {
00040 public:
00041 enum EEye {
00042 eRightEye,
00043 eLeftEye,
00044 eBothEyes,
00045 eAutoEye
00046 };
00047
00050 virtual EErrorCode setEye(EEye eEye) = 0;
00053 virtual EErrorCode setStreamImageSize(u16 uSizeX, u16 uSizeY) = 0;
00056 virtual EErrorCode setWidthRatio(double dWidthRatioX, double dWidthRatioY) = 0;
00059 virtual EErrorCode setCenter(double dCenterX, double dCenterY) = 0;
00062 virtual void updateRemotePTZ() = 0;
00063
00064 };
00065 };
00066
00067
00068
00069 #endif // __MX_ISUPPORTSREMOTEPTZ_H__