改变光谱bin2的波长计算方式为:通过bin1平均相邻波长获取;

This commit is contained in:
tangchao0503
2023-06-28 11:59:46 +08:00
parent 5337a40837
commit 47002ad894
4 changed files with 106 additions and 7 deletions

View File

@ -34,7 +34,9 @@ public:
bool getspatialBin(int &spatialBin);
bool getEffectiveWindow(int &width, int &offsetx, int &height, int &offsety);
bool getEffectiveWindowRoi(int &width, int &offsetx);
bool getWindowOffsety_HeightOfSpectral(int &offsety, int &height, string spectralBinString);//spectralBinString = "bin1"或者”bin2“
bool getGainOffset(float &gain, float &offset);
bool getGainOffsetOfSpectralBin1(float &gain, float &offset);
bool getSN(QString &SN);
bool getBufferPolicy(int &bufferPolicy);

View File

@ -154,6 +154,9 @@ private:
int m_iImagerState;
int m_iImagerStateTemp;
int m_iOffsetyOfSpectralBin1, m_iOffsetyOfSpectralBin2;
int m_iHeightOfSpectralBin1, m_iHeightOfSpectralBin2;
QThread * m_recordTempThread;
RecordXimeaTemperature * m_ximeaTemperature;