Upload 8 files
Browse filesspecifically designed for parking scene reconstruction
- coordinate.png +3 -0
- data1.zip +3 -0
- data2.zip +3 -0
- data3.zip +3 -0
- data4.zip +3 -0
- doc_tree.png +3 -0
- param.yaml +43 -0
- stitch.json +174 -0
coordinate.png
ADDED
|
Git LFS Details
|
data1.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:475c313a3dc3cdbf78b0e826a2e196d6b2eab0b6e77bbeef157ff4cb0ec82ee6
|
| 3 |
+
size 1643223035
|
data2.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e08bc80c29c1054b6232ce2b450a90cd450050706fb578d55c019fd3f4e312a7
|
| 3 |
+
size 2359397772
|
data3.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42d69680b29f0fcb3f11adc0c089221a994de31b4f4cd4a80535cd6b5cb7cbf2
|
| 3 |
+
size 2075078397
|
data4.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1dbc53ac5c34126e97e2741ada8f444f98620ffc01181be94374517d3e023712
|
| 3 |
+
size 3351389761
|
doc_tree.png
ADDED
|
Git LFS Details
|
param.yaml
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#--------------------------------------------------------------------------------------------
|
| 2 |
+
# Virtual BEV Camera Parameters.
|
| 3 |
+
#--------------------------------------------------------------------------------------------
|
| 4 |
+
|
| 5 |
+
# BEV Camera intrinic parameters
|
| 6 |
+
BevCam.fx: 95.0 # virtual BEV camera's fx (pxl)
|
| 7 |
+
BevCam.fy: 95.0 # virtual BEV camera's fy (pxl)
|
| 8 |
+
BevCam.cx: 676.5 # virtual BEV camera's cx (pxl)
|
| 9 |
+
BevCam.cy: 815.5 # virtual BEV camera's cy (pxl)
|
| 10 |
+
|
| 11 |
+
BevCam.ImgWidth: 1354 # virtual BEV camera's image width (pxl)
|
| 12 |
+
BevCam.ImgHeight: 1632 # virtual BEV camera's image height (pxl)
|
| 13 |
+
|
| 14 |
+
# BEV Camera height from ground (mm)
|
| 15 |
+
BevCam.CamHeight: 1000
|
| 16 |
+
|
| 17 |
+
# BEV Camera frames per second (fps)
|
| 18 |
+
BevCam.fps: 10.0
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
#--------------------------------------------------------------------------------------------
|
| 22 |
+
# Inertial measurement unit Parameters.
|
| 23 |
+
#--------------------------------------------------------------------------------------------
|
| 24 |
+
Imu.cx: 630.0 # Imu center in the vehicle coordinate (mm)
|
| 25 |
+
Imu.cy: 986.0 # Imu center in the vehicle coordinate (mm)
|
| 26 |
+
Imu.cz: 850.0 # Imu center in the vehicle coordinate (mm)
|
| 27 |
+
|
| 28 |
+
IMU.NoiseGyro: 0.001308 # rad/s
|
| 29 |
+
IMU.NoiseAcc: 0.017325 # m/s^2
|
| 30 |
+
IMU.GyroWalk: 0.000052 # rad/s
|
| 31 |
+
IMU.AccWalk: 0.000678 # m/s^2
|
| 32 |
+
IMU.Frequency: 50 # Hz
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
#--------------------------------------------------------------------------------------------
|
| 36 |
+
# Vehicle Informations.
|
| 37 |
+
#--------------------------------------------------------------------------------------------
|
| 38 |
+
CarInfo.Length: 4872 # The length of the vehicle (mm)
|
| 39 |
+
CarInfo.Width: 1960 # The width of the vehicle (mm)
|
| 40 |
+
CarInfo.Wheelbase: 2910 # The wheelbase of the vehicle (mm)
|
| 41 |
+
CarInfo.FrontOverHang: 983 # The front overhang of the vehicle (mm)
|
| 42 |
+
CarInfo.RearOverHang: 979 # The rear overhang of the vehicle (mm)
|
| 43 |
+
|
stitch.json
ADDED
|
@@ -0,0 +1,174 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"camParams" : [
|
| 3 |
+
{
|
| 4 |
+
"Distortion" : [
|
| 5 |
+
0.1212049973727065,
|
| 6 |
+
-0.030290306400809049,
|
| 7 |
+
0.0073699175561778149,
|
| 8 |
+
-0.0013268784433810011
|
| 9 |
+
],
|
| 10 |
+
"Extrinsics" : [
|
| 11 |
+
-0.0056261258338001774,
|
| 12 |
+
0.99998350937943981,
|
| 13 |
+
0.0011522487934931824,
|
| 14 |
+
-0.57267280125699349,
|
| 15 |
+
0.64988050235798389,
|
| 16 |
+
0.0045321196781054063,
|
| 17 |
+
-0.76002288948830865,
|
| 18 |
+
1.5440201614617501,
|
| 19 |
+
-0.76001557836865208,
|
| 20 |
+
-0.0035271603880728808,
|
| 21 |
+
-0.64989528370081295,
|
| 22 |
+
-0.052950932299226421
|
| 23 |
+
],
|
| 24 |
+
"Intrinsics" : [ 100.0, 0.0, 639.5, 0.0, 100.0, 479.5, 0.0, 0.0, 1.0 ],
|
| 25 |
+
"VisualEnd" : 7.1300000190734867,
|
| 26 |
+
"VisualStart" : 1.1300000190734862,
|
| 27 |
+
"camId" : 0,
|
| 28 |
+
"camInfo" : "left",
|
| 29 |
+
"oriIntrinsics" : [
|
| 30 |
+
327.58620695192167,
|
| 31 |
+
0.0,
|
| 32 |
+
639.5,
|
| 33 |
+
0.0,
|
| 34 |
+
327.58620695192167,
|
| 35 |
+
479.5,
|
| 36 |
+
0.0,
|
| 37 |
+
0.0,
|
| 38 |
+
1.0
|
| 39 |
+
]
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
"Distortion" : [
|
| 43 |
+
0.1212049973727065,
|
| 44 |
+
-0.030290306400809049,
|
| 45 |
+
0.0073699175561778149,
|
| 46 |
+
-0.0013268784433810011
|
| 47 |
+
],
|
| 48 |
+
"Extrinsics" : [
|
| 49 |
+
0.99983420239652476,
|
| 50 |
+
0.01815594006405578,
|
| 51 |
+
-0.0013890854889605734,
|
| 52 |
+
-0.039943997229817702,
|
| 53 |
+
0.0047723349615375376,
|
| 54 |
+
-0.33489857974936244,
|
| 55 |
+
-0.94224209527110114,
|
| 56 |
+
1.3851490837859803,
|
| 57 |
+
-0.017572493764975793,
|
| 58 |
+
0.94207924460856807,
|
| 59 |
+
-0.33492970059495986,
|
| 60 |
+
-2.0729414847710212
|
| 61 |
+
],
|
| 62 |
+
"Intrinsics" : [ 100.0, 0.0, 639.5, 0.0, 100.0, 479.5, 0.0, 0.0, 1.0 ],
|
| 63 |
+
"VisualEnd" : 8.5860001087188724,
|
| 64 |
+
"VisualStart" : 2.586000108718872,
|
| 65 |
+
"camId" : 1,
|
| 66 |
+
"camInfo" : "front",
|
| 67 |
+
"oriIntrinsics" : [
|
| 68 |
+
327.58620695192167,
|
| 69 |
+
0.0,
|
| 70 |
+
639.5,
|
| 71 |
+
0.0,
|
| 72 |
+
327.58620695192167,
|
| 73 |
+
479.5,
|
| 74 |
+
0.0,
|
| 75 |
+
0.0,
|
| 76 |
+
1.0
|
| 77 |
+
]
|
| 78 |
+
},
|
| 79 |
+
{
|
| 80 |
+
"Distortion" : [
|
| 81 |
+
0.1212049973727065,
|
| 82 |
+
-0.030290306400809049,
|
| 83 |
+
0.0073699175561778149,
|
| 84 |
+
-0.0013268784433810011
|
| 85 |
+
],
|
| 86 |
+
"Extrinsics" : [
|
| 87 |
+
-0.023201152952390114,
|
| 88 |
+
-0.99918980250926215,
|
| 89 |
+
-0.032885332036964698,
|
| 90 |
+
0.61997635111394822,
|
| 91 |
+
-0.62509437526998834,
|
| 92 |
+
0.04017006028586434,
|
| 93 |
+
-0.77951484159216178,
|
| 94 |
+
1.5335645943061171,
|
| 95 |
+
0.78020428639395645,
|
| 96 |
+
0.0024707930167546244,
|
| 97 |
+
-0.62551991708846932,
|
| 98 |
+
-0.070630658858756731
|
| 99 |
+
],
|
| 100 |
+
"Intrinsics" : [ 100.0, 0.0, 639.5, 0.0, 100.0, 479.5, 0.0, 0.0, 1.0 ],
|
| 101 |
+
"VisualEnd" : 7.1300000190734867,
|
| 102 |
+
"VisualStart" : 1.1300000190734862,
|
| 103 |
+
"camId" : 2,
|
| 104 |
+
"camInfo" : "right",
|
| 105 |
+
"oriIntrinsics" : [
|
| 106 |
+
327.58620695192167,
|
| 107 |
+
0.0,
|
| 108 |
+
639.5,
|
| 109 |
+
0.0,
|
| 110 |
+
327.58620695192167,
|
| 111 |
+
479.5,
|
| 112 |
+
0.0,
|
| 113 |
+
0.0,
|
| 114 |
+
1.0
|
| 115 |
+
]
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"Distortion" : [
|
| 119 |
+
0.1212049973727065,
|
| 120 |
+
-0.030290306400809049,
|
| 121 |
+
0.0073699175561778149,
|
| 122 |
+
-0.0013268784433810011
|
| 123 |
+
],
|
| 124 |
+
"Extrinsics" : [
|
| 125 |
+
-0.99980126164153549,
|
| 126 |
+
-0.018291742544135639,
|
| 127 |
+
-0.0079277597524637922,
|
| 128 |
+
-0.088886395051821207,
|
| 129 |
+
-0.0040444116348440709,
|
| 130 |
+
0.57549860780114015,
|
| 131 |
+
-0.81779275807106377,
|
| 132 |
+
2.2596909839085666,
|
| 133 |
+
0.019521269285619324,
|
| 134 |
+
-0.8175981681569795,
|
| 135 |
+
-0.57545821348889414,
|
| 136 |
+
-1.294125509932607
|
| 137 |
+
],
|
| 138 |
+
"Intrinsics" : [ 100.0, 0.0, 639.5, 0.0, 100.0, 479.5, 0.0, 0.0, 1.0 ],
|
| 139 |
+
"VisualEnd" : 8.5860001087188724,
|
| 140 |
+
"VisualStart" : 2.586000108718872,
|
| 141 |
+
"camId" : 3,
|
| 142 |
+
"camInfo" : "back",
|
| 143 |
+
"oriIntrinsics" : [
|
| 144 |
+
327.58620695192167,
|
| 145 |
+
0.0,
|
| 146 |
+
639.5,
|
| 147 |
+
0.0,
|
| 148 |
+
327.58620695192167,
|
| 149 |
+
479.5,
|
| 150 |
+
0.0,
|
| 151 |
+
0.0,
|
| 152 |
+
1.0
|
| 153 |
+
]
|
| 154 |
+
}
|
| 155 |
+
],
|
| 156 |
+
"carInfo" : [
|
| 157 |
+
{
|
| 158 |
+
"carLength" : 4.8720002174377441,
|
| 159 |
+
"carWidth" : 1.9600000381469727,
|
| 160 |
+
"extendRange" : 0.20000000298023224,
|
| 161 |
+
"rearOverhang" : 0.89999997615814209,
|
| 162 |
+
"wheelbase" : 2.9100000858306885
|
| 163 |
+
}
|
| 164 |
+
],
|
| 165 |
+
"inputCfg" : [
|
| 166 |
+
{
|
| 167 |
+
"isUndistort" : 0,
|
| 168 |
+
"rgbImgH" : 960,
|
| 169 |
+
"rgbImgW" : 1280,
|
| 170 |
+
"skewingH" : 0.60000002384185791,
|
| 171 |
+
"skewingW" : 0.60000002384185791
|
| 172 |
+
}
|
| 173 |
+
]
|
| 174 |
+
}
|