mirror of
https://github.com/opencv/opencv.git
synced 2025-01-21 00:20:59 +08:00
Fix Syntax warning in ts summary.py
This commit is contained in:
parent
d77abeddd0
commit
3899a060a3
@ -37,8 +37,8 @@ import testlog_parser, sys, os, xml, glob, re
|
||||
from table_formatter import *
|
||||
from optparse import OptionParser
|
||||
|
||||
numeric_re = re.compile("(\d+)")
|
||||
cvtype_re = re.compile("(8U|8S|16U|16S|32S|32F|64F)C(\d{1,3})")
|
||||
numeric_re = re.compile(r"(\d+)")
|
||||
cvtype_re = re.compile(r"(8U|8S|16U|16S|32S|32F|64F)C(\d{1,3})")
|
||||
cvtypes = { '8U': 0, '8S': 1, '16U': 2, '16S': 3, '32S': 4, '32F': 5, '64F': 6 }
|
||||
|
||||
convert = lambda text: int(text) if text.isdigit() else text
|
||||
|
Loading…
Reference in New Issue
Block a user