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.

25 line
622 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_ExposureParam "ExposureParam"
  5. class ExposureParam : public JObject //曝光
  6. {
  7. public:
  8. JIntHex LeastTime; ///自动曝光时间下限或手动曝光时间,单位微秒
  9. JIntObj Level; ///曝光等级
  10. JIntHex MostTime; ///自动曝光时间上限,单位微秒
  11. public:
  12. ExposureParam(JObject *pParent = NULL, const char *szName = JK_ExposureParam):
  13. JObject(pParent,szName),
  14. LeastTime(this, "LeastTime"),
  15. Level(this, "Level"),
  16. MostTime(this, "MostTime"){
  17. };
  18. ~ExposureParam(void){};
  19. };
  20. NS_NETSDK_CFG_END