Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
331 B
14 lines
331 B
#/usr/bin/env python |
|
|
|
# add the hdr_parser to the path |
|
import sys |
|
sys.path.append(sys.argv[1]) |
|
|
|
# get the IO from the command line arguments |
|
input_files = sys.argv[2:-1] |
|
output_dir = sys.argv[-1] |
|
|
|
# create the generator |
|
from gen_matlab import MatlabWrapperGenerator |
|
mwg = MatlabWrapperGenerator() |
|
mwg.gen(input_files, output_dir)
|
|
|