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.
 
 
 
 
 
 

12 lines
269 B

#/usr/bin/env python
import sys
from gen_matlab import MatlabWrapperGenerator
# get the IO from the command line arguments
input_files = sys.argv[1:-1]
output_dir = sys.argv[-1]
# create the generator
mwg = MatlabWrapperGenerator()
mwg.gen(input_files, output_dir)