-
Notifications
You must be signed in to change notification settings - Fork 597
/
stereo_visual_odometry.py
426 lines (348 loc) · 16 KB
/
stereo_visual_odometry.py
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
import os
import numpy as np
import cv2
from scipy.optimize import least_squares
from lib.visualization import plotting
from lib.visualization.video import play_trip
from tqdm import tqdm
class VisualOdometry():
def __init__(self, data_dir):
self.K_l, self.P_l, self.K_r, self.P_r = self._load_calib(data_dir + '/calib.txt')
self.gt_poses = self._load_poses(data_dir + '/poses.txt')
self.images_l = self._load_images(data_dir + '/image_l')
self.images_r = self._load_images(data_dir + '/image_r')
block = 11
P1 = block * block * 8
P2 = block * block * 32
self.disparity = cv2.StereoSGBM_create(minDisparity=0, numDisparities=32, blockSize=block, P1=P1, P2=P2)
self.disparities = [
np.divide(self.disparity.compute(self.images_l[0], self.images_r[0]).astype(np.float32), 16)]
self.fastFeatures = cv2.FastFeatureDetector_create()
self.lk_params = dict(winSize=(15, 15),
flags=cv2.MOTION_AFFINE,
maxLevel=3,
criteria=(cv2.TERM_CRITERIA_EPS | cv2.TERM_CRITERIA_COUNT, 50, 0.03))
@staticmethod
def _load_calib(filepath):
"""
Loads the calibration of the camera
Parameters
----------
filepath (str): The file path to the camera file
Returns
-------
K_l (ndarray): Intrinsic parameters for left camera. Shape (3,3)
P_l (ndarray): Projection matrix for left camera. Shape (3,4)
K_r (ndarray): Intrinsic parameters for right camera. Shape (3,3)
P_r (ndarray): Projection matrix for right camera. Shape (3,4)
"""
with open(filepath, 'r') as f:
params = np.fromstring(f.readline(), dtype=np.float64, sep=' ')
P_l = np.reshape(params, (3, 4))
K_l = P_l[0:3, 0:3]
params = np.fromstring(f.readline(), dtype=np.float64, sep=' ')
P_r = np.reshape(params, (3, 4))
K_r = P_r[0:3, 0:3]
return K_l, P_l, K_r, P_r
@staticmethod
def _load_poses(filepath):
"""
Loads the GT poses
Parameters
----------
filepath (str): The file path to the poses file
Returns
-------
poses (ndarray): The GT poses. Shape (n, 4, 4)
"""
poses = []
with open(filepath, 'r') as f:
for line in f.readlines():
T = np.fromstring(line, dtype=np.float64, sep=' ')
T = T.reshape(3, 4)
T = np.vstack((T, [0, 0, 0, 1]))
poses.append(T)
return poses
@staticmethod
def _load_images(filepath):
"""
Loads the images
Parameters
----------
filepath (str): The file path to image dir
Returns
-------
images (list): grayscale images. Shape (n, height, width)
"""
image_paths = [os.path.join(filepath, file) for file in sorted(os.listdir(filepath))]
images = [cv2.imread(path, cv2.IMREAD_GRAYSCALE) for path in image_paths]
return images
@staticmethod
def _form_transf(R, t):
"""
Makes a transformation matrix from the given rotation matrix and translation vector
Parameters
----------
R (ndarray): The rotation matrix. Shape (3,3)
t (list): The translation vector. Shape (3)
Returns
-------
T (ndarray): The transformation matrix. Shape (4,4)
"""
T = np.eye(4, dtype=np.float64)
T[:3, :3] = R
T[:3, 3] = t
return T
def reprojection_residuals(self, dof, q1, q2, Q1, Q2):
"""
Calculate the residuals
Parameters
----------
dof (ndarray): Transformation between the two frames. First 3 elements are the rotation vector and the last 3 is the translation. Shape (6)
q1 (ndarray): Feature points in i-1'th image. Shape (n_points, 2)
q2 (ndarray): Feature points in i'th image. Shape (n_points, 2)
Q1 (ndarray): 3D points seen from the i-1'th image. Shape (n_points, 3)
Q2 (ndarray): 3D points seen from the i'th image. Shape (n_points, 3)
Returns
-------
residuals (ndarray): The residuals. In shape (2 * n_points * 2)
"""
# Get the rotation vector
r = dof[:3]
# Create the rotation matrix from the rotation vector
R, _ = cv2.Rodrigues(r)
# Get the translation vector
t = dof[3:]
# Create the transformation matrix from the rotation matrix and translation vector
transf = self._form_transf(R, t)
# Create the projection matrix for the i-1'th image and i'th image
f_projection = np.matmul(self.P_l, transf)
b_projection = np.matmul(self.P_l, np.linalg.inv(transf))
# Make the 3D points homogenize
ones = np.ones((q1.shape[0], 1))
Q1 = np.hstack([Q1, ones])
Q2 = np.hstack([Q2, ones])
# Project 3D points from i'th image to i-1'th image
q1_pred = Q2.dot(f_projection.T)
# Un-homogenize
q1_pred = q1_pred[:, :2].T / q1_pred[:, 2]
# Project 3D points from i-1'th image to i'th image
q2_pred = Q1.dot(b_projection.T)
# Un-homogenize
q2_pred = q2_pred[:, :2].T / q2_pred[:, 2]
# Calculate the residuals
residuals = np.vstack([q1_pred - q1.T, q2_pred - q2.T]).flatten()
return residuals
def get_tiled_keypoints(self, img, tile_h, tile_w):
"""
Splits the image into tiles and detects the 10 best keypoints in each tile
Parameters
----------
img (ndarray): The image to find keypoints in. Shape (height, width)
tile_h (int): The tile height
tile_w (int): The tile width
Returns
-------
kp_list (ndarray): A 1-D list of all keypoints. Shape (n_keypoints)
"""
def get_kps(x, y):
# Get the image tile
impatch = img[y:y + tile_h, x:x + tile_w]
# Detect keypoints
keypoints = self.fastFeatures.detect(impatch)
# Correct the coordinate for the point
for pt in keypoints:
pt.pt = (pt.pt[0] + x, pt.pt[1] + y)
# Get the 10 best keypoints
if len(keypoints) > 10:
keypoints = sorted(keypoints, key=lambda x: -x.response)
return keypoints[:10]
return keypoints
# Get the image height and width
h, w, *_ = img.shape
# Get the keypoints for each of the tiles
kp_list = [get_kps(x, y) for y in range(0, h, tile_h) for x in range(0, w, tile_w)]
# Flatten the keypoint list
kp_list_flatten = np.concatenate(kp_list)
return kp_list_flatten
def track_keypoints(self, img1, img2, kp1, max_error=4):
"""
Tracks the keypoints between frames
Parameters
----------
img1 (ndarray): i-1'th image. Shape (height, width)
img2 (ndarray): i'th image. Shape (height, width)
kp1 (ndarray): Keypoints in the i-1'th image. Shape (n_keypoints)
max_error (float): The maximum acceptable error
Returns
-------
trackpoints1 (ndarray): The tracked keypoints for the i-1'th image. Shape (n_keypoints_match, 2)
trackpoints2 (ndarray): The tracked keypoints for the i'th image. Shape (n_keypoints_match, 2)
"""
# Convert the keypoints into a vector of points and expand the dims so we can select the good ones
trackpoints1 = np.expand_dims(cv2.KeyPoint_convert(kp1), axis=1)
# Use optical flow to find tracked counterparts
trackpoints2, st, err = cv2.calcOpticalFlowPyrLK(img1, img2, trackpoints1, None, **self.lk_params)
# Convert the status vector to boolean so we can use it as a mask
trackable = st.astype(bool)
# Create a maks there selects the keypoints there was trackable and under the max error
under_thresh = np.where(err[trackable] < max_error, True, False)
# Use the mask to select the keypoints
trackpoints1 = trackpoints1[trackable][under_thresh]
trackpoints2 = np.around(trackpoints2[trackable][under_thresh])
# Remove the keypoints there is outside the image
h, w = img1.shape
in_bounds = np.where(np.logical_and(trackpoints2[:, 1] < h, trackpoints2[:, 0] < w), True, False)
trackpoints1 = trackpoints1[in_bounds]
trackpoints2 = trackpoints2[in_bounds]
return trackpoints1, trackpoints2
def calculate_right_qs(self, q1, q2, disp1, disp2, min_disp=0.0, max_disp=100.0):
"""
Calculates the right keypoints (feature points)
Parameters
----------
q1 (ndarray): Feature points in i-1'th left image. In shape (n_points, 2)
q2 (ndarray): Feature points in i'th left image. In shape (n_points, 2)
disp1 (ndarray): Disparity i-1'th image per. Shape (height, width)
disp2 (ndarray): Disparity i'th image per. Shape (height, width)
min_disp (float): The minimum disparity
max_disp (float): The maximum disparity
Returns
-------
q1_l (ndarray): Feature points in i-1'th left image. In shape (n_in_bounds, 2)
q1_r (ndarray): Feature points in i-1'th right image. In shape (n_in_bounds, 2)
q2_l (ndarray): Feature points in i'th left image. In shape (n_in_bounds, 2)
q2_r (ndarray): Feature points in i'th right image. In shape (n_in_bounds, 2)
"""
def get_idxs(q, disp):
q_idx = q.astype(int)
disp = disp.T[q_idx[:, 0], q_idx[:, 1]]
return disp, np.where(np.logical_and(min_disp < disp, disp < max_disp), True, False)
# Get the disparity's for the feature points and mask for min_disp & max_disp
disp1, mask1 = get_idxs(q1, disp1)
disp2, mask2 = get_idxs(q2, disp2)
# Combine the masks
in_bounds = np.logical_and(mask1, mask2)
# Get the feature points and disparity's there was in bounds
q1_l, q2_l, disp1, disp2 = q1[in_bounds], q2[in_bounds], disp1[in_bounds], disp2[in_bounds]
# Calculate the right feature points
q1_r, q2_r = np.copy(q1_l), np.copy(q2_l)
q1_r[:, 0] -= disp1
q2_r[:, 0] -= disp2
return q1_l, q1_r, q2_l, q2_r
def calc_3d(self, q1_l, q1_r, q2_l, q2_r):
"""
Triangulate points from both images
Parameters
----------
q1_l (ndarray): Feature points in i-1'th left image. In shape (n, 2)
q1_r (ndarray): Feature points in i-1'th right image. In shape (n, 2)
q2_l (ndarray): Feature points in i'th left image. In shape (n, 2)
q2_r (ndarray): Feature points in i'th right image. In shape (n, 2)
Returns
-------
Q1 (ndarray): 3D points seen from the i-1'th image. In shape (n, 3)
Q2 (ndarray): 3D points seen from the i'th image. In shape (n, 3)
"""
# Triangulate points from i-1'th image
Q1 = cv2.triangulatePoints(self.P_l, self.P_r, q1_l.T, q1_r.T)
# Un-homogenize
Q1 = np.transpose(Q1[:3] / Q1[3])
# Triangulate points from i'th image
Q2 = cv2.triangulatePoints(self.P_l, self.P_r, q2_l.T, q2_r.T)
# Un-homogenize
Q2 = np.transpose(Q2[:3] / Q2[3])
return Q1, Q2
def estimate_pose(self, q1, q2, Q1, Q2, max_iter=100):
"""
Estimates the transformation matrix
Parameters
----------
q1 (ndarray): Feature points in i-1'th image. Shape (n, 2)
q2 (ndarray): Feature points in i'th image. Shape (n, 2)
Q1 (ndarray): 3D points seen from the i-1'th image. Shape (n, 3)
Q2 (ndarray): 3D points seen from the i'th image. Shape (n, 3)
max_iter (int): The maximum number of iterations
Returns
-------
transformation_matrix (ndarray): The transformation matrix. Shape (4,4)
"""
early_termination_threshold = 5
# Initialize the min_error and early_termination counter
min_error = float('inf')
early_termination = 0
for _ in range(max_iter):
# Choose 6 random feature points
sample_idx = np.random.choice(range(q1.shape[0]), 6)
sample_q1, sample_q2, sample_Q1, sample_Q2 = q1[sample_idx], q2[sample_idx], Q1[sample_idx], Q2[sample_idx]
# Make the start guess
in_guess = np.zeros(6)
# Perform least squares optimization
opt_res = least_squares(self.reprojection_residuals, in_guess, method='lm', max_nfev=200,
args=(sample_q1, sample_q2, sample_Q1, sample_Q2))
# Calculate the error for the optimized transformation
error = self.reprojection_residuals(opt_res.x, q1, q2, Q1, Q2)
error = error.reshape((Q1.shape[0] * 2, 2))
error = np.sum(np.linalg.norm(error, axis=1))
# Check if the error is less the the current min error. Save the result if it is
if error < min_error:
min_error = error
out_pose = opt_res.x
early_termination = 0
else:
early_termination += 1
if early_termination == early_termination_threshold:
# If we have not fund any better result in early_termination_threshold iterations
break
# Get the rotation vector
r = out_pose[:3]
# Make the rotation matrix
R, _ = cv2.Rodrigues(r)
# Get the translation vector
t = out_pose[3:]
# Make the transformation matrix
transformation_matrix = self._form_transf(R, t)
return transformation_matrix
def get_pose(self, i):
"""
Calculates the transformation matrix for the i'th frame
Parameters
----------
i (int): Frame index
Returns
-------
transformation_matrix (ndarray): The transformation matrix. Shape (4,4)
"""
# Get the i-1'th image and i'th image
img1_l, img2_l = self.images_l[i - 1:i + 1]
# Get teh tiled keypoints
kp1_l = self.get_tiled_keypoints(img1_l, 10, 20)
# Track the keypoints
tp1_l, tp2_l = self.track_keypoints(img1_l, img2_l, kp1_l)
# Calculate the disparitie
self.disparities.append(np.divide(self.disparity.compute(img2_l, self.images_r[i]).astype(np.float32), 16))
# Calculate the right keypoints
tp1_l, tp1_r, tp2_l, tp2_r = self.calculate_right_qs(tp1_l, tp2_l, self.disparities[i - 1], self.disparities[i])
# Calculate the 3D points
Q1, Q2 = self.calc_3d(tp1_l, tp1_r, tp2_l, tp2_r)
# Estimate the transformation matrix
transformation_matrix = self.estimate_pose(tp1_l, tp2_l, Q1, Q2)
return transformation_matrix
def main():
data_dir = 'KITTI_sequence_2' # Try KITTI_sequence_2
vo = VisualOdometry(data_dir)
play_trip(vo.images_l, vo.images_r) # Comment out to not play the trip
gt_path = []
estimated_path = []
for i, gt_pose in enumerate(tqdm(vo.gt_poses, unit="poses")):
if i < 1:
cur_pose = gt_pose
else:
transf = vo.get_pose(i)
cur_pose = np.matmul(cur_pose, transf)
gt_path.append((gt_pose[0, 3], gt_pose[2, 3]))
estimated_path.append((cur_pose[0, 3], cur_pose[2, 3]))
plotting.visualize_paths(gt_path, estimated_path, "Stereo Visual Odometry",
file_out=os.path.basename(data_dir) + ".html")
if __name__ == "__main__":
main()