-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
193 lines (152 loc) · 7.2 KB
/
main.py
File metadata and controls
193 lines (152 loc) · 7.2 KB
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
import cv2
import numpy as np
from matplotlib import pyplot as plt
from argparse import ArgumentParser
def normalization(pts):
# Normalizing the input points #
# Find the centroid of the points (find the mean x and mean y value)
centroid = np.array([np.mean(pts[:, 0]), np.mean(pts[:, 1])])
# Compute the mean distance of all the points from this centroid
distance = 0
for index in range(pts[:, 0].size):
distance += np.linalg.norm(centroid - pts[index, :])
meanDistance = distance / pts[:, 0].size
# Construct a 3 by 3 matrix that would translate the points so that the mean distance would be sqrt(2)
T = np.array([[np.sqrt(2) / meanDistance, 0, -centroid[0] * np.sqrt(2) / meanDistance],
[0, np.sqrt(2) / meanDistance, -centroid[1] * np.sqrt(2) / meanDistance],
[0, 0, 1]])
# Normalize points
result = np.ones((pts[:, 0].size, 2), dtype=float)
for index in range(pts[:, 0].size):
current = np.dot(T, np.array([pts[index, 0], pts[index, 1], 1]))
# we are only interested in x & y
result[index, 0] = current[0]
result[index, 1] = current[1]
return result, T
def FM_by_normalized_8_point(pts1, pts2):
# F, _ = cv2.findFundamentalMat(pts1, pts2, cv2.FM_8POINT)
# comment out the above line of code.
# Normalizing points
normalizedPts1, T1 = normalization(pts1)
normalizedPts2, T2 = normalization(pts2)
u1 = normalizedPts1[:, 0]
v1 = normalizedPts1[:, 1]
u2 = normalizedPts2[:, 0]
v2 = normalizedPts2[:, 1]
ones = np.ones(normalizedPts1[:, 0].size, int)
# Create the constraint matrix
A = np.array([u1 * u2, u1 * v2, u1, v1 * u2, v1 * v2, v1, u2, v2, ones]).transpose()
U, D, V = np.linalg.svd(A)
# Reference: https://www.coursera.org/lecture/robotics-perception/epipolar-geometry-ii-WRyoL #
# Extract fundamental matrix from the column of V corresponding to the smallest singular value
FMatrix = np.reshape(V.transpose()[:, 8], (3, 3)).transpose()
# Enforce rank2 constraint
U, D, V = np.linalg.svd(FMatrix)
FMatrix = U @ np.diag(np.array([D[0], D[1], 0])) @ V
# De-normalize
FMatrix = T2.transpose() @ FMatrix @ T1
##############################################################################################
# normalize the fundamental matrix so that the value on [2, 2] is 1
FMatrix = np.true_divide(FMatrix, FMatrix[2, 2])
return FMatrix
# Reference: https://www.coursera.org/lecture/robotics-perception/epipolar-geometry-ii-WRyoL
def FM_by_RANSAC(pts1, pts2):
# F, mask = cv2.findFundamentalMat(pts1, pts2, cv2.FM_RANSAC)
# comment out the above line of code.
samplePointCount = 8
totalPointCount = pts1[:, 0].size
maxInlier = -9999
# adjust numberOfIteration & threshold to see different results #
numberOfIteration = 10000
threshold = 0.2
# Initialize the final fundamental matrix and final mask
finalFMatrix = np.zeros((3, 3), dtype=float)
finalMask = np.zeros((totalPointCount, 1), dtype=int)
for iterate in range(numberOfIteration):
tempMask = np.zeros((totalPointCount, 1), dtype=int) # initialize temp mask
# random select 8 points from pts1 & pts2 between 0 - totalPointCount
randomIndexes = np.random.choice(totalPointCount, samplePointCount, replace=False)
samplePts1 = pts1[randomIndexes]
samplePts2 = pts2[randomIndexes]
tempFMatrix = FM_by_normalized_8_point(samplePts1, samplePts2) # calculate FMatrix
# add one behind points in order to make the matrix multiplication to FMatrix (3x3) possible
oneByThreeSamplePts1 = np.c_[pts1, np.ones(totalPointCount)]
oneByThreeSamplePts2 = np.c_[pts2, np.ones(totalPointCount)]
for index in range(totalPointCount):
# Compute the difference
difference = abs(oneByThreeSamplePts1[index].transpose() @ tempFMatrix @ oneByThreeSamplePts2[index])
# the number is inlier if the difference is smaller than the threshold
if difference < threshold:
tempMask[index, 0] = 1
# compare if the inliers in tempMask is bigger than the maxInlier. If so, update the finalMask and finalFMatrix
if np.count_nonzero(tempMask == 1, axis=0) > maxInlier:
maxInlier = np.count_nonzero(tempMask == 1, axis=0)
finalMask = tempMask
finalFMatrix = tempFMatrix
return finalFMatrix, finalMask
def drawlines(img1, img2, lines, pts1, pts2):
''' img1 - image on which we draw the epilines for the points in img2
lines - corresponding epilines '''
r, c = img1.shape
img1 = cv2.cvtColor(img1, cv2.COLOR_GRAY2BGR)
img2 = cv2.cvtColor(img2, cv2.COLOR_GRAY2BGR)
for r, pt1, pt2 in zip(lines, pts1, pts2):
color = tuple(np.random.randint(0, 255, 3).tolist())
x0, y0 = map(int, [0, -r[2] / r[1]])
x1, y1 = map(int, [c, -(r[2] + r[0] * c) / r[1]])
img1 = cv2.line(img1, (x0, y0), (x1, y1), color, 1)
img1 = cv2.circle(img1, tuple(pt1), 5, color, -1)
img2 = cv2.circle(img2, tuple(pt2), 5, color, -1)
return img1, img2
if __name__ == '__main__':
parser = ArgumentParser()
parser.add_argument("--UseRANSAC", type=int, default=0)
parser.add_argument("--image1", type=str, default='data/towerLeft.jpg')
parser.add_argument("--image2", type=str, default='data/towerRight.jpg')
args = parser.parse_args()
print(args)
img1 = cv2.imread(args.image1, 0)
img2 = cv2.imread(args.image2, 0)
sift = cv2.xfeatures2d.SIFT_create()
# find the keypoints and descriptors with SIFT
kp1, des1 = sift.detectAndCompute(img1, None)
kp2, des2 = sift.detectAndCompute(img2, None)
# FLANN parameters
FLANN_INDEX_KDTREE = 0
index_params = dict(algorithm=FLANN_INDEX_KDTREE, trees=5)
search_params = dict(checks=50)
flann = cv2.FlannBasedMatcher(index_params, search_params)
matches = flann.knnMatch(des1, des2, k=2)
good = []
pts1 = []
pts2 = []
# ratio test as per Lowe's paper
for i, (m, n) in enumerate(matches):
if m.distance < 0.8 * n.distance:
good.append(m)
pts2.append(kp2[m.trainIdx].pt)
pts1.append(kp1[m.queryIdx].pt)
pts1 = np.int32(pts1)
pts2 = np.int32(pts2)
F = None
if args.UseRANSAC:
F, mask = FM_by_RANSAC(pts1, pts2)
# We select only inlier points
pts1 = pts1[mask.ravel() == 1]
pts2 = pts2[mask.ravel() == 1]
else:
F = FM_by_normalized_8_point(pts1, pts2)
# Find epilines corresponding to points in second image, and draw the lines on first image
lines1 = cv2.computeCorrespondEpilines(pts2.reshape(-1, 1, 2), 2, F)
lines1 = lines1.reshape(-1, 3)
img5, img6 = drawlines(img1, img2, lines1, pts1, pts2)
plt.subplot(121), plt.imshow(img5)
plt.subplot(122), plt.imshow(img6)
plt.show()
# Find epilines corresponding to points in first image, and draw the lines on second image
lines2 = cv2.computeCorrespondEpilines(pts1.reshape(-1, 1, 2), 1, F)
lines2 = lines2.reshape(-1, 3)
img3, img4 = drawlines(img2, img1, lines2, pts2, pts1)
plt.subplot(121), plt.imshow(img4)
plt.subplot(122), plt.imshow(img3)
plt.show()