forked from xin/TowerOptoSifAndSpectral
机载第一版
This commit is contained in:
@ -275,7 +275,9 @@ bool DataFileProcessor::WriteData(QString path)
|
||||
qstrTemp = QString("_P%1").arg(j + 1);
|
||||
qfData.write(qstrTemp.toLatin1());
|
||||
qfData.write(",");
|
||||
if ((m_vecData[i][j].fTemperature < 5) /*&& (m_vecData[i][j].fTemperature> -5)*/)
|
||||
// if ((m_vecData[i][j].fTemperature < 5) /*&& (m_vecData[i][j].fTemperature> -5)*/)
|
||||
if (m_vecDarkData[i][j].bIsValid)
|
||||
|
||||
{
|
||||
qfData.write("valid");
|
||||
}
|
||||
@ -327,7 +329,8 @@ bool DataFileProcessor::WriteDarkData(QString path)
|
||||
qstrTemp = QString("_P%1").arg(j + 1);
|
||||
qfData.write(qstrTemp.toLatin1());
|
||||
qfData.write(",");
|
||||
if ((m_vecDarkData[i][j].fTemperature < 5) /*&& (m_vecDarkData[i][j].fTemperature> -5)*/)
|
||||
// if ((m_vecDarkData[i][j].fTemperature < 5&&m_vecDarkData[i][j].bIsValid) /*&& (m_vecDarkData[i][j].fTemperature> -5)*/)
|
||||
if (m_vecDarkData[i][j].bIsValid)
|
||||
{
|
||||
qfData.write("valid");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user