2018-09-20 22:59:04 +08:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import cv2 as cv
|
|
|
|
|
|
|
|
|
|
|
|
def add_argument(zoo, parser, name, help, required=False, default=None, type=None, action=None, nargs=None):
|
|
|
|
if len(sys.argv) <= 1:
|
|
|
|
return
|
|
|
|
|
|
|
|
modelName = sys.argv[1]
|
|
|
|
|
|
|
|
if os.path.isfile(zoo):
|
|
|
|
fs = cv.FileStorage(zoo, cv.FILE_STORAGE_READ)
|
|
|
|
node = fs.getNode(modelName)
|
|
|
|
if not node.empty():
|
|
|
|
value = node.getNode(name)
|
2024-08-06 14:16:11 +08:00
|
|
|
if name=="sha1":
|
|
|
|
value = node.getNode("load_info")
|
|
|
|
value = value.getNode(name)
|
2018-09-20 22:59:04 +08:00
|
|
|
if not value.empty():
|
|
|
|
if value.isReal():
|
|
|
|
default = value.real()
|
|
|
|
elif value.isString():
|
|
|
|
default = value.string()
|
|
|
|
elif value.isInt():
|
|
|
|
default = int(value.real())
|
|
|
|
elif value.isSeq():
|
|
|
|
default = []
|
|
|
|
for i in range(value.size()):
|
|
|
|
v = value.at(i)
|
|
|
|
if v.isInt():
|
|
|
|
default.append(int(v.real()))
|
|
|
|
elif v.isReal():
|
|
|
|
default.append(v.real())
|
|
|
|
else:
|
|
|
|
print('Unexpected value format')
|
|
|
|
exit(0)
|
|
|
|
else:
|
|
|
|
print('Unexpected field format')
|
|
|
|
exit(0)
|
|
|
|
required = False
|
|
|
|
|
|
|
|
if action == 'store_true':
|
|
|
|
default = 1 if default == 'true' else (0 if default == 'false' else default)
|
|
|
|
assert(default is None or default == 0 or default == 1)
|
|
|
|
parser.add_argument('--' + name, required=required, help=help, default=bool(default),
|
|
|
|
action=action)
|
|
|
|
else:
|
|
|
|
parser.add_argument('--' + name, required=required, help=help, default=default,
|
|
|
|
action=action, nargs=nargs, type=type)
|
|
|
|
|
|
|
|
|
|
|
|
def add_preproc_args(zoo, parser, sample):
|
|
|
|
aliases = []
|
|
|
|
if os.path.isfile(zoo):
|
|
|
|
fs = cv.FileStorage(zoo, cv.FILE_STORAGE_READ)
|
|
|
|
root = fs.root()
|
|
|
|
for name in root.keys():
|
|
|
|
model = root.getNode(name)
|
|
|
|
if model.getNode('sample').string() == sample:
|
|
|
|
aliases.append(name)
|
|
|
|
|
|
|
|
parser.add_argument('alias', nargs='?', choices=aliases,
|
|
|
|
help='An alias name of model to extract preprocessing parameters from models.yml file.')
|
|
|
|
add_argument(zoo, parser, 'model', required=True,
|
|
|
|
help='Path to a binary file of model contains trained weights. '
|
|
|
|
'It could be a file with extensions .caffemodel (Caffe), '
|
2023-10-26 16:27:56 +08:00
|
|
|
'.pb (TensorFlow), .weights (Darknet), .bin (OpenVINO)')
|
2018-09-20 22:59:04 +08:00
|
|
|
add_argument(zoo, parser, 'config',
|
|
|
|
help='Path to a text file of model contains network configuration. '
|
|
|
|
'It could be a file with extensions .prototxt (Caffe), .pbtxt or .config (TensorFlow), .cfg (Darknet), .xml (OpenVINO)')
|
|
|
|
add_argument(zoo, parser, 'mean', nargs='+', type=float, default=[0, 0, 0],
|
|
|
|
help='Preprocess input image by subtracting mean values. '
|
|
|
|
'Mean values should be in BGR order.')
|
2024-08-06 14:16:11 +08:00
|
|
|
add_argument(zoo, parser, 'std', nargs='+', type=float, default=[0, 0, 0],
|
|
|
|
help='Preprocess input image by dividing on a standard deviation.')
|
2018-09-20 22:59:04 +08:00
|
|
|
add_argument(zoo, parser, 'scale', type=float, default=1.0,
|
|
|
|
help='Preprocess input image by multiplying on a scale factor.')
|
|
|
|
add_argument(zoo, parser, 'width', type=int,
|
|
|
|
help='Preprocess input image by resizing to a specific width.')
|
|
|
|
add_argument(zoo, parser, 'height', type=int,
|
|
|
|
help='Preprocess input image by resizing to a specific height.')
|
|
|
|
add_argument(zoo, parser, 'rgb', action='store_true',
|
|
|
|
help='Indicate that model works with RGB input images instead BGR ones.')
|
2024-08-06 14:16:11 +08:00
|
|
|
add_argument(zoo, parser, 'labels',
|
|
|
|
help='Optional path to a text file with names of labels to label detected objects.')
|
2023-11-16 18:40:00 +08:00
|
|
|
add_argument(zoo, parser, 'postprocessing', type=str,
|
|
|
|
help='Post-processing kind depends on model topology.')
|
|
|
|
add_argument(zoo, parser, 'background_label_id', type=int, default=-1,
|
|
|
|
help='An index of background class in predictions. If not negative, exclude such class from list of classes.')
|
2024-08-06 14:16:11 +08:00
|
|
|
add_argument(zoo, parser, 'sha1', type=str,
|
|
|
|
help='Optional path to hashsum of downloaded model to be loaded from models.yml')
|
2018-09-20 22:59:04 +08:00
|
|
|
|
2024-08-06 14:16:11 +08:00
|
|
|
def findModel(filename, sha1):
|
|
|
|
if filename:
|
|
|
|
if os.path.exists(filename):
|
|
|
|
return filename
|
|
|
|
|
|
|
|
fpath = cv.samples.findFile(filename, False)
|
|
|
|
if fpath:
|
|
|
|
return fpath
|
|
|
|
|
|
|
|
if os.getenv('OPENCV_DOWNLOAD_CACHE_DIR') is None:
|
|
|
|
print('[WARN] Please specify a path to model download directory in OPENCV_DOWNLOAD_CACHE_DIR environment variable.')
|
|
|
|
return findFile(filename)
|
|
|
|
|
|
|
|
if os.path.exists(os.path.join(os.environ['OPENCV_DOWNLOAD_CACHE_DIR'], sha1, filename)):
|
|
|
|
return os.path.join(os.environ['OPENCV_DOWNLOAD_CACHE_DIR'], sha1, filename)
|
|
|
|
|
|
|
|
print('File ' + filename + ' not found! Please specify a path to '
|
|
|
|
'model download directory in OPENCV_DOWNLOAD_CACHE_DIR '
|
|
|
|
'environment variable or pass a full path to ' + filename)
|
|
|
|
exit(0)
|
2018-09-20 22:59:04 +08:00
|
|
|
|
|
|
|
def findFile(filename):
|
|
|
|
if filename:
|
|
|
|
if os.path.exists(filename):
|
|
|
|
return filename
|
|
|
|
|
2018-11-11 21:18:09 +08:00
|
|
|
fpath = cv.samples.findFile(filename, False)
|
|
|
|
if fpath:
|
|
|
|
return fpath
|
|
|
|
|
2024-08-06 14:16:11 +08:00
|
|
|
if os.getenv('OPENCV_SAMPLES_DATA_PATH') is None:
|
|
|
|
print('[WARN] Please specify a path to `/samples/data` in OPENCV_SAMPLES_DATA_PATH environment variable.')
|
|
|
|
exit(0)
|
|
|
|
|
|
|
|
if os.path.exists(os.path.join(os.environ['OPENCV_SAMPLES_DATA_PATH'], filename)):
|
|
|
|
return os.path.join(os.environ['OPENCV_SAMPLES_DATA_PATH'], filename)
|
2018-09-20 22:59:04 +08:00
|
|
|
|
2024-08-06 14:16:11 +08:00
|
|
|
for path in ['OPENCV_DNN_TEST_DATA_PATH', 'OPENCV_TEST_DATA_PATH', 'OPENCV_SAMPLES_DATA_PATH']:
|
2018-09-20 22:59:04 +08:00
|
|
|
try:
|
|
|
|
extraPath = os.environ[path]
|
|
|
|
absPath = os.path.join(extraPath, 'dnn', filename)
|
|
|
|
if os.path.exists(absPath):
|
|
|
|
return absPath
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
2024-08-06 14:16:11 +08:00
|
|
|
print('File ' + filename + ' not found! Please specify the path to '
|
|
|
|
'/opencv/samples/data in the OPENCV_SAMPLES_DATA_PATH environment variable, '
|
|
|
|
'or specify the path to opencv_extra/testdata in the OPENCV_DNN_TEST_DATA_PATH environment variable, '
|
|
|
|
'or specify the path to the model download cache directory in the OPENCV_DOWNLOAD_CACHE_DIR environment variable, '
|
|
|
|
'or pass the full path to ' + filename + '.')
|
2018-09-20 22:59:04 +08:00
|
|
|
exit(0)
|
2024-08-06 14:16:11 +08:00
|
|
|
|
|
|
|
def get_backend_id(backend_name):
|
|
|
|
backend_ids = {
|
|
|
|
"default": cv.dnn.DNN_BACKEND_DEFAULT,
|
|
|
|
"openvino": cv.dnn.DNN_BACKEND_INFERENCE_ENGINE,
|
|
|
|
"opencv": cv.dnn.DNN_BACKEND_OPENCV,
|
|
|
|
"vkcom": cv.dnn.DNN_BACKEND_VKCOM,
|
|
|
|
"cuda": cv.dnn.DNN_BACKEND_CUDA
|
|
|
|
}
|
|
|
|
|
|
|
|
if backend_name not in backend_ids:
|
|
|
|
raise ValueError(f"Invalid backend name: {backend_name}")
|
|
|
|
|
|
|
|
return backend_ids[backend_name]
|
|
|
|
|
|
|
|
def get_target_id(target_name):
|
|
|
|
target_ids = {
|
|
|
|
"cpu": cv.dnn.DNN_TARGET_CPU,
|
|
|
|
"opencl": cv.dnn.DNN_TARGET_OPENCL,
|
|
|
|
"opencl_fp16": cv.dnn.DNN_TARGET_OPENCL_FP16,
|
|
|
|
"ncs2_vpu": cv.dnn.DNN_TARGET_MYRIAD,
|
|
|
|
"hddl_vpu": cv.dnn.DNN_TARGET_HDDL,
|
|
|
|
"vulkan": cv.dnn.DNN_TARGET_VULKAN,
|
|
|
|
"cuda": cv.dnn.DNN_TARGET_CUDA,
|
|
|
|
"cuda_fp16": cv.dnn.DNN_TARGET_CUDA_FP16
|
|
|
|
}
|
|
|
|
if target_name not in target_ids:
|
|
|
|
raise ValueError(f"Invalid target name: {target_name}")
|
|
|
|
|
|
|
|
return target_ids[target_name]
|