Skip to content

Commit 97465b9

Browse files
committed
限制大小并竖向合并
1 parent f96e810 commit 97465b9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

run.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
frame2 = cv.cvtColor(frame2, cv.COLOR_BGR2RGB)
3535

3636
# 目标检测
37-
x, img = transform_test(frame1, short=512)
37+
x, img = transform_test(frame1, short=512, max_size=680)
3838
x = x.as_in_context(ctx)
3939
class_IDs, scores, bounding_boxs = detector(x)
4040

@@ -52,10 +52,10 @@
5252
results = angeleCal.compare(angles).astype('U5')
5353

5454
# 缩放示例视频并合并显示
55-
height = int(img.shape[0])
56-
width = int(height * frame2.shape[1] / frame2.shape[0])
57-
frame2 = cv.resize(frame2, (width, height))
58-
img = np.hstack((img, frame2))
55+
width = int(img.shape[1])
56+
height = int(width * frame2.shape[0] / frame2.shape[1])
57+
frame2 = cv.resize(frame2, (width, height), cv.INTER_AREA)
58+
img = np.vstack((img, frame2))
5959

6060
cv_plot_image(img,
6161
upperleft_txt=FPS.fps(), upperleft_txt_corner=(10,25),

0 commit comments

Comments
 (0)