Skip to content
Snippets Groups Projects
Commit efc3f081 authored by Guillaume HEUSCH's avatar Guillaume HEUSCH
Browse files

[cvpr14] fix issue with default protocol name

parent 86249524
Branches
Tags
1 merge request!6Resolve "Package depends on both bob.db.cohface and bob.db.hci_tagging"
Pipeline #
...@@ -98,7 +98,7 @@ def main(user_input=None): ...@@ -98,7 +98,7 @@ def main(user_input=None):
configuration = load([os.path.join(args['<configuration>'])]) configuration = load([os.path.join(args['<configuration>'])])
# get various parameters, either from config file or command-line # get various parameters, either from config file or command-line
protocol = get_parameter(args, configuration, 'protocol', 'all') protocol = get_parameter(args, configuration, 'protocol', 'None')
subset = get_parameter(args, configuration, 'subset', '') subset = get_parameter(args, configuration, 'subset', '')
facedir = get_parameter(args, configuration, 'facedir', 'face') facedir = get_parameter(args, configuration, 'facedir', 'face')
bgdir = get_parameter(args, configuration, 'bgdir', 'bg') bgdir = get_parameter(args, configuration, 'bgdir', 'bg')
......
...@@ -20,7 +20,7 @@ Options: ...@@ -20,7 +20,7 @@ Options:
-V, --version Show version -V, --version Show version
-P, --plot Set this flag if you'd like to follow-up the algorithm -P, --plot Set this flag if you'd like to follow-up the algorithm
execution graphically. We'll plot some interactions. execution graphically. We'll plot some interactions.
-p, --protocol=<string> Protocol [default: all]. -p, --protocol=<string> Protocol.
-s, --subset=<string> Data subset to load. If nothing is provided -s, --subset=<string> Data subset to load. If nothing is provided
all the data sets will be loaded. all the data sets will be loaded.
-i, --motiondir=<path> The path to the saved signals to be filtered on -i, --motiondir=<path> The path to the saved signals to be filtered on
...@@ -92,7 +92,7 @@ def main(user_input=None): ...@@ -92,7 +92,7 @@ def main(user_input=None):
configuration = load([os.path.join(args['<configuration>'])]) configuration = load([os.path.join(args['<configuration>'])])
# get various parameters, either from config file or command-line # get various parameters, either from config file or command-line
protocol = get_parameter(args, configuration, 'protocol', 'all') protocol = get_parameter(args, configuration, 'protocol', 'None')
subset = get_parameter(args, configuration, 'subset', '') subset = get_parameter(args, configuration, 'subset', '')
motiondir = get_parameter(args, configuration, 'motiondir', 'motion') motiondir = get_parameter(args, configuration, 'motiondir', 'motion')
pulsedir = get_parameter(args, configuration, 'pulsedir', 'pulse') pulsedir = get_parameter(args, configuration, 'pulsedir', 'pulse')
......
...@@ -21,7 +21,7 @@ Options: ...@@ -21,7 +21,7 @@ Options:
-V, --version Show version -V, --version Show version
-P, --plot Set this flag if you'd like to follow-up the algorithm -P, --plot Set this flag if you'd like to follow-up the algorithm
execution graphically. We'll plot some interactions. execution graphically. We'll plot some interactions.
-p, --protocol=<string> Protocol [default: all]. -p, --protocol=<string> Protocol.
-s, --subset=<string> Data subset to load. If nothing is provided -s, --subset=<string> Data subset to load. If nothing is provided
all the data sets will be loaded. all the data sets will be loaded.
-f, --facedir=<path> The path to the directory containing the average -f, --facedir=<path> The path to the directory containing the average
...@@ -88,7 +88,7 @@ def main(user_input=None): ...@@ -88,7 +88,7 @@ def main(user_input=None):
configuration = load([os.path.join(args['<configuration>'])]) configuration = load([os.path.join(args['<configuration>'])])
# get various parameters, either from config file or command-line # get various parameters, either from config file or command-line
protocol = get_parameter(args, configuration, 'protocol', '') protocol = get_parameter(args, configuration, 'protocol', 'None')
subset = get_parameter(args, configuration, 'subset', 'all') subset = get_parameter(args, configuration, 'subset', 'all')
facedir = get_parameter(args, configuration, 'facedir', 'face') facedir = get_parameter(args, configuration, 'facedir', 'face')
bgdir = get_parameter(args, configuration, 'bgdir', 'bg') bgdir = get_parameter(args, configuration, 'bgdir', 'bg')
......
...@@ -20,7 +20,7 @@ Options: ...@@ -20,7 +20,7 @@ Options:
-V, --version Show version -V, --version Show version
-P, --plot Set this flag if you'd like to follow-up the algorithm -P, --plot Set this flag if you'd like to follow-up the algorithm
execution graphically. We'll plot some interactions. execution graphically. We'll plot some interactions.
-p, --protocol=<string> Protocol [default: all]. -p, --protocol=<string> Protocol.
-s, --subset=<string> Data subset to load. If nothing is provided -s, --subset=<string> Data subset to load. If nothing is provided
all the data sets will be loaded. all the data sets will be loaded.
-i, --illumdir=<path> The path to the saved illumination corrected signal -i, --illumdir=<path> The path to the saved illumination corrected signal
...@@ -91,7 +91,7 @@ def main(user_input=None): ...@@ -91,7 +91,7 @@ def main(user_input=None):
configuration = load([os.path.join(args['<configuration>'])]) configuration = load([os.path.join(args['<configuration>'])])
# get various parameters, either from config file or command-line # get various parameters, either from config file or command-line
protocol = get_parameter(args, configuration, 'protocol', '') protocol = get_parameter(args, configuration, 'protocol', 'None')
subset = get_parameter(args, configuration, 'subset', 'all') subset = get_parameter(args, configuration, 'subset', 'all')
illumdir = get_parameter(args, configuration, 'illumdir', 'illumination') illumdir = get_parameter(args, configuration, 'illumdir', 'illumination')
motiondir = get_parameter(args, configuration, 'motiondir', 'motion') motiondir = get_parameter(args, configuration, 'motiondir', 'motion')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment