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
|
# 使用BRISK算法匹配
try match with BRISKMatching
find_best_result() run time is 0.21 s.
match result: None
resize: (160, 208)->(160, 208), resolution: (1080, 2400)=>(1080, 1920)
try match with SURFMatching
find_best_result() run time is 0.23 s.
try match with TemplateMatching
# confidence置信度只有0.399所以结果被舍弃了
[Template] threshold=0.7, result={'result': (123, 1285), 'rectangle': ((43, 1181), (43, 1389), (203, 1389), (203, 1181)), 'confidence': 0.3993876576423645}
find_best_result() run time is 0.08 s.
try match with BRISKMatching
find_best_result() run time is 0.22 s.
match result: None
resize: (160, 208)->(160, 208), resolution: (1080, 2400)=>(1080, 1920)
try match with SURFMatching
'Target area is 5 times bigger or 0.2 times smaller than sch_img.'
try match with TemplateMatching
[Template] threshold=0.7, result={'result': (123, 1285), 'rectangle': ((43, 1181), (43, 1389), (203, 1389), (203, 1181)), 'confidence': 0.3993876576423645}
find_best_result() run time is 0.08 s.
try match with BRISKMatching
find_best_result() run time is 0.21 s.
match result: None
resize: (160, 208)->(160, 208), resolution: (1080, 2400)=>(1080, 1920)
try match with SURFMatching
|