-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHdlCorrection.cpp
57 lines (48 loc) · 1.7 KB
/
HdlCorrection.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include "HdlCorrection.h"
#include <glog/logging.h>
#include <cmath>
HdlCorrection::HdlCorrection(const std::string fileName)
: blockedByHipAngle(4500)
{
//the dat file is converted from db.xml, only have the array info
//used parse_xml_db solution to convert xml to dat file
std::ifstream fdb(fileName);
if (!fdb)
{
DLOG(FATAL) << "Error reading ladar calibration file.";
}
for (int i = 0; i < LASER_NUM; i++)
{
lasersort[i]=i;
fdb >> rotAngle[i] >> vertAngle[i] >> dist[i]
>> vertOffset[i] >> horizOffset[i] >> minIntensity[i]
>> maxIntensity[i] >> distX[i] >> distY[i]
>> focalDist[i] >> focalSlope[i];
}
fdb.close();
//resort each laser. Reason uncertain for Zou - to be clarified.
for (int i=0;i<LASER_NUM-1;i++)
for (int j=i+1;j<LASER_NUM;j++)
if (vertAngle[lasersort[i]]>vertAngle[lasersort[j]])
{
int ts=lasersort[i];lasersort[i]=lasersort[j];lasersort[j]=ts;
}
for (int i=0;i<LASER_NUM;i++) layermark[lasersort[i]]=i;
//regulate unit to mm
for (int i = 0; i < LASER_NUM; i++)
{
dist[i] *= 10;vertOffset[i] *= 10;horizOffset[i] *= 10;distX[i] *= 10;distY[i] *= 10;
}
for (int i = 0; i < LASER_NUM; i++)
{
cos_rotAngle[i] = cos( rotAngle[i] / 180.0f * M_PI);
sin_rotAngle[i] = sin( rotAngle[i] / 180.0f * M_PI);
cos_vertAngle[i] = cos( vertAngle[i] / 180.0f * M_PI);
sin_vertAngle[i] = sin( vertAngle[i] / 180.0f * M_PI);
}
for (int i = 0; i < ANGLE_NUM; i++)
{
cos_raw[i] = cos( i / 18000.0f * M_PI);
sin_raw[i] = sin( i / 18000.0f * M_PI);
}
}