File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 34
34
frame2 = cv .cvtColor (frame2 , cv .COLOR_BGR2RGB )
35
35
36
36
# 目标检测
37
- x , img = transform_test (frame1 , short = 512 )
37
+ x , img = transform_test (frame1 , short = 512 , max_size = 680 )
38
38
x = x .as_in_context (ctx )
39
39
class_IDs , scores , bounding_boxs = detector (x )
40
40
52
52
results = angeleCal .compare (angles ).astype ('U5' )
53
53
54
54
# 缩放示例视频并合并显示
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 ))
59
59
60
60
cv_plot_image (img ,
61
61
upperleft_txt = FPS .fps (), upperleft_txt_corner = (10 ,25 ),
You can’t perform that action at this time.
0 commit comments