-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathvidExample.py
More file actions
184 lines (159 loc) · 6.43 KB
/
vidExample.py
File metadata and controls
184 lines (159 loc) · 6.43 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
# Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
import scipy
import plots
from utils.images import *
from utils.KLT import *
from utils.MSV import *
from utils.NLS import *
# @profile
def vidExamplefcn():
"""Processes video or image data for vehicle speed analysis, tracking, and camera pose estimation."""
isVideo = True
patha = "./data/"
pathb = "./matlab/"
if isVideo:
# filename, startframe = patha + 'IMG_4119.MOV', 41 # 20km/h 2018.3.11
filename, startframe = f"{patha}IMG_4134.MOV", 19
# filename, startframe = patha + 'IMG_4238.MOV', 8 # 60km/h 2018.3.30 missing *.mat file
readSpeed = 1 # read every # frames
n = 20 # number of frames to read
frames = np.arange(n) * readSpeed + startframe # video frames to read
else:
frames = np.arange(4122, 4134) # 40km/h
n = len(frames)
imagename = [f"{patha}IMG_{str(i)}.JPG" for i in frames]
filename = imagename[0]
cam, cap = getCameraParams(filename, platform="iPhone 6s")
mat = scipy.io.loadmat(pathb + cam["filename"] + ".mat")
q = mat["q"].astype(np.float32)
video_4k_to_2k = True
if isVideo and video_4k_to_2k: # scale from native 4k to 2k video
q /= 2
cam["focalLength_pix"] /= 2
cam["IntrinsicMatrix"][:2, :2] /= 2
# Define camera and car information matrices
cput0 = time.time()
K = cam["IntrinsicMatrix"]
B = np.zeros([n, 14], dtype=np.float32) # [xyz, rpy, xyz_ecef, lla, t, number](nx14) car information
S = np.zeros([n, 9], dtype=np.float32) # stats
_ = np.linalg.inv(np.random.rand(3, 3) @ np.random.rand(3, 3)) # for profiling purposes
# Iterate over images
proc_dt = np.zeros([n, 1])
print(f"Starting image processing on {filename} ...")
print(
("\n" + "%13s" * 9)
* 2
% (
"image",
"procTime",
"pointTracks",
"metric",
"dt",
"time",
"dx",
"distance",
"speed",
"#",
"(s)",
"#",
"(pixels)",
"(s)",
"(s)",
"(m)",
"(m)",
"(km/h)",
)
)
for i in range(n):
tic = time.time()
# read image
if isVideo:
if i == 0:
if startframe != 0:
cap.set(1, startframe)
else:
df = frames[i] - frames[i - 1]
if df > 1:
# cap.set(1, frames[i])
for _ in range(df - 1):
cap.read() # skip frames
B[i, 12] = cap.get(cv2.CAP_PROP_POS_MSEC) / 1000 # access CAP_PROP *before* reading!
B[i, 13] = cap.get(cv2.CAP_PROP_POS_FRAMES)
success, imbgr = cap.read() # read frame
im = cv2.cvtColor(imbgr, cv2.COLOR_BGR2GRAY)
else:
success, im = True, cv2.imread(imagename[i], 0) # 0 second argument = grayscale
exif = importEXIF(imagename[i])
B[i, 9:13] = fcnEXIF2LLAT(exif)
if not success:
break
# Scaling and histogram equalization
scale = 1
if scale != 1:
im = cv2.resize(im, (0, 0), fx=scale, fy=scale, interpolation=cv2.INTER_NEAREST)
# KLT tracking
if i == 0:
q *= scale
boxa = boundingRect(q, im.shape, border=(0, 0))
boxb = boundingRect(q, im.shape, border=(700, 500))
roi = im[boxb[2] : boxb[3], boxb[0] : boxb[1]]
p = cv2.goodFeaturesToTrack(roi, 1000, 0.01, 0, blockSize=5, useHarrisDetector=True).squeeze() + np.float32(
[boxb[0], boxb[2]]
)
p = cv2.cornerSubPix(
im, p, (5, 5), (-1, -1), (cv2.TERM_CRITERIA_EPS + cv2.TERM_CRITERIA_MAX_ITER, 100, 0.001)
)
p = np.concatenate((q, p))
t, R, residuals, _ = estimateWorldCameraPose(K, q, worldPointsLicensePlate("Chile"), findR=True)
p3 = addcol0(image2world(K, R, t, p).astype(float)) @ R + t
R = np.eye(3)
B[0, 0:3] = t
# residual = p - world2image(K, np.eye(3), np.array([0, 0, 0]), p3 + t)
# initialize
vg = np.ones(p.shape[0], dtype=bool) # valid global points
vp = insidebbox(p, boxa)
p_ = p[vp]
P = np.empty([5, p.shape[0], n], dtype=np.float32) # KLT [x y valid]
P[:] = np.nan
imfirst, im0_small, dt, dr, r, t0 = im, None, np.nan, 0, 0, B[0, 12]
else:
# KLT
p, v, im0_small = KLTmain(im, im0, im0_small, p)
vg[vg] = v
vp = vp & vg
# fit plate
t, R, residuals, p_ = estimateWorldCameraPose(K, p[vp[vg]], p3[vp], R=R, findR=False)
# save results
dt = B[i, 12] - B[i - 1, 12]
dr = norm(t + B[0, 0:3] - B[i - 1, 0:3])
r += dr
B[i, 3:6] = t
B[i, 0:3] = B[0, 0:3] + t
del im0
# py.plot([go.Histogram(x=residuals, nbinsx=30)])
P[0:2, vg, i] = p.T # xy
P[2:4, vp, i] = p_.T # xy_proj
P[4, vg, i] = i
msvFrame = 5
if i == msvFrame:
# B[0:i, 3:6], p3[vg] = fcnNLS_batch(K, P[:,:,0:i], p3, B[0:i, 3:6])
tmsv, p3hatmsv = fcnMSV1_t(K, P, B, vg, i)
p3[vg] = p3hatmsv - t
vp = vg # enable all points now
# Print image[i] results
proc_dt[i] = time.time() - tic
S[i, :] = (i, proc_dt[i], vg.sum(), residuals, dt, B[i, 12] - t0, dr, r, dr / dt * 3.6)
print("{:13g}{:13.3f}{:13g}{:13.3f}{:13.3f}{:13.3f}{:13.2f}{:13.2f}{:13.1f}".format(*tuple(S[i, :])))
# imrgb = cv2.cvtColor(imbgr,cv2.COLOR_BGR2RGB)
# plots.imshow(cv2.cvtColor(imrgb,cv2.COLOR_BGR2HSV_FULL)[:,:,0])
im_gaussian = cv2.GaussianBlur(im, (3, 3), 0)
cv2.Canny(im_gaussian, 100, 200)
# plots.imshow(cv2.GaussianBlur(im_canny, (9, 9), 0))
if isVideo:
cap.release() # Release the video capture object
dta = time.time() - cput0
print(f"\nSpeed = {S[1:, 8].mean():.2f} +/- {S[1:, 8].std():.2f} km/h\nRes = {S[1:, 3].mean():.3f} pixels")
print(f"Processed {n:g} images: {frames[:]} in {dta:.2f}s ({n / dta:.2f}fps)\n")
plots.plotresults(cam, im // 2 + imfirst // 2, P, S, B, bbox=boxb) # // is integer division
if __name__ == "__main__":
vidExamplefcn()