ToFTintinCamera.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. * TI Voxel Lib component.
  3. *
  4. * Copyright (c) 2014 Texas Instruments Inc.
  5. */
  6. #ifndef VOXEL_TI_TOFTINTINCAMERA_H
  7. #define VOXEL_TI_TOFTINTINCAMERA_H
  8. #include <ToFCamera.h>
  9. #define MOD_M1 "mod_m1" //mdiv_fb_deci_pll1
  10. #define MOD_M_FRAC1 "mod_m_frac1"
  11. #undef MOD_M2
  12. #define MOD_M2 "mod_m2" //mdiv_fb_deci_pll2
  13. #define MOD_M_FRAC2 "mod_m_frac2"
  14. #define MOD_N1 "mod_n1" //mdiv_pll_1_in
  15. #undef MOD_N2
  16. #define MOD_N2 "mod_n2" //mdiv_pll_2_in
  17. #define VCO_FREQ1 "vco_freq1"
  18. #define VCO_FREQ2 "vco_freq2"
  19. #undef MOD_PS1
  20. #define MOD_PS1 "mod_ps1" //mdiv_ff_pll1
  21. #undef MOD_PS2
  22. #define MOD_PS2 "mod_ps2" //mdiv_ff_pll2
  23. #undef MOD_PLL_UPDATE
  24. #define MOD_PLL_UPDATE "mod_pll_update" //reset_pll_reg
  25. #undef DEBUG_EN
  26. #define DEBUG_EN "phy_test_enable"
  27. #undef CONFIDENCE_THRESHOLD
  28. #define CONFIDENCE_THRESHOLD "amplitude_threshold"
  29. #define KA "ka"
  30. #define KB "kb"
  31. #define FREQ_RATIO "freq_ratio"
  32. #define DELAY_FB_COEFF1 "delay_fb_coeff_1"
  33. #undef HISTOGRAM_EN
  34. #define TG_DISABLE "tg_dis"
  35. #define SCRATCH1 "scratch1" // Used for storing unambiguous range
  36. #define SCRATCH2 "scratch2" // Used for storing current camera profile ID
  37. #define X_CROSS_TALK_COEFF_F1 "x_filt_coeff_f1"
  38. #define Y_CROSS_TALK_COEFF_F1 "y_filt_coeff_f1"
  39. #define X_CROSS_TALK_COEFF_F2 "x_filt_coeff_f2"
  40. #define Y_CROSS_TALK_COEFF_F2 "y_filt_coeff_f2"
  41. #define CROSS_TALK_FILT_COEFF_X_RE_F1 "filt_coeff_x_re_f1"
  42. #define CROSS_TALK_FILT_COEFF_X_IM_F1 "filt_coeff_x_im_f1"
  43. #define CROSS_TALK_FILT_COEFF_Y_RE_F1 "filt_coeff_y_re_f1"
  44. #define CROSS_TALK_FILT_COEFF_Y_IM_F1 "filt_coeff_y_im_f1"
  45. #define CROSS_TALK_FILT_COEFF_X_RE_F2 "filt_coeff_x_re_f2"
  46. #define CROSS_TALK_FILT_COEFF_X_IM_F2 "filt_coeff_x_im_f2"
  47. #define CROSS_TALK_FILT_COEFF_Y_RE_F2 "filt_coeff_y_re_f2"
  48. #define CROSS_TALK_FILT_COEFF_Y_IM_F2 "filt_coeff_y_im_f2"
  49. #define CROSS_TALK_EN "filt_en"
  50. #define CROSS_TALK_SCALE "filt_scale"
  51. #define NONLINEARITY_PHASE_PERIOD "phase_lin_corr_period"
  52. #define NONLINEARITY_COEFF_F1 "phase_lin_coeff0"
  53. #define NONLINEARITY_COEFF_F2 "phase_lin_coeff1"
  54. #define NONLINEARITY_ENABLE "phase_lin_corr_en"
  55. #define COEFF_ILLUM "coeff_illum"
  56. #define COEFF_SENSOR "coeff_sensor"
  57. #define DELAY_FB_CORR_MODE "delay_fb_corr_mode"
  58. #define DELAY_FB_DC_CORR_MODE "delay_fb_dc_corr_mode"
  59. namespace Voxel
  60. {
  61. namespace TI
  62. {
  63. class TI3DTOF_EXPORT ToFTintinCamera: public ToFCamera
  64. {
  65. protected:
  66. bool _init();
  67. virtual bool _initStartParams();
  68. virtual bool _getIlluminationFrequency(float& frequency) const;
  69. virtual bool _getSystemClockFrequency(uint &frequency) const;
  70. virtual bool _allowedROI(String &message);
  71. virtual bool _getROI(RegionOfInterest &roi) const;
  72. virtual bool _setROI(const RegionOfInterest &roi);
  73. virtual bool _isHistogramEnabled() const;
  74. virtual bool _applyCalibrationParams();
  75. virtual bool _getCurrentProfileRegisterName(String& name);
  76. public:
  77. ToFTintinCamera(const String &name, DevicePtr device);
  78. virtual bool _getMaximumFrameSize(FrameSize &s) const;
  79. virtual ~ToFTintinCamera() {}
  80. friend class TintinVCOFrequency;
  81. friend class TintinModulationFrequencyParameter;
  82. friend class TintinUnambiguousRangeParameter;
  83. };
  84. class TI3DTOF_EXPORT TintinModulationFrequencyParameter: public FloatParameter
  85. {
  86. ToFTintinCamera &_depthCamera;
  87. String _modPS, _vcoFreq;
  88. public:
  89. TintinModulationFrequencyParameter(ToFTintinCamera &depthCamera, RegisterProgrammer &programmer, const String &name, const String &vcoFreq, const String &modPS, const float &defaultValue):
  90. FloatParameter(programmer, name, "MHz", 0, 0, 0, 1, 2.5f, 600.0f, defaultValue, "Modulation frequency", "Frequency used for modulation of illumination",
  91. Parameter::IO_READ_WRITE, {vcoFreq, modPS}), _vcoFreq(vcoFreq), _modPS(modPS), _depthCamera(depthCamera) {}
  92. virtual const float getOptimalMaximum() = 0;
  93. virtual const float getOptimalMinimum() = 0;
  94. virtual const float lowerLimit() const
  95. {
  96. int quadCount;
  97. if(!_depthCamera._get(QUAD_CNT_MAX, quadCount))
  98. return _lowerLimit;
  99. if(quadCount == 0)
  100. return _lowerLimit;
  101. return 37.5f/quadCount;
  102. }
  103. virtual const float upperLimit() const
  104. {
  105. int quadCount;
  106. if(!_depthCamera._get(QUAD_CNT_MAX, quadCount))
  107. return _upperLimit;
  108. if(quadCount == 0)
  109. return _upperLimit;
  110. return 600.0f/quadCount;
  111. }
  112. virtual bool get(float &value, bool refresh = false);
  113. virtual bool set(const float &value);
  114. virtual ~TintinModulationFrequencyParameter() {}
  115. };
  116. // NOTE: scratch1 register available for software to store bits in Tintin camera.
  117. class TI3DTOF_EXPORT TintinUnambiguousRangeParameter: public UnsignedIntegerParameter
  118. {
  119. ToFTintinCamera &_depthCamera;
  120. uint _defaultValue;
  121. uint _modPS1, _modPS2;
  122. public:
  123. TintinUnambiguousRangeParameter(ToFTintinCamera &depthCamera, RegisterProgrammer &programmer, const uint &minimum, const uint &maximum, const uint &defaultValue, const uint &modPS1, const uint &modPS2):
  124. UnsignedIntegerParameter(programmer, UNAMBIGUOUS_RANGE, "m", 0, 0, 0, 0, minimum, maximum,
  125. defaultValue, "Unambiguous Range", "Unambiguous range of distance the camera needs to support"), _defaultValue(defaultValue),
  126. _modPS1(modPS1), _modPS2(modPS2),
  127. _depthCamera(depthCamera) {}
  128. virtual bool get(uint &value, bool refresh = false);
  129. virtual bool set(const uint &value);
  130. };
  131. }
  132. }
  133. #endif // VOXEL_TI_TOFTINTINCAMERA_H