summaryrefslogtreecommitdiff
path: root/options/base_options.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-17 09:24:17 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-17 09:24:17 +0200
commit48faae06f6f7cf749e328f07a7613aa74fa1a3df (patch)
tree746691f21ca0c1cc7ff52c481aa462b9e40100ea /options/base_options.py
parenta496a05f67427a5506abdbd8b8c993a11f603129 (diff)
args
Diffstat (limited to 'options/base_options.py')
-rwxr-xr-xoptions/base_options.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/options/base_options.py b/options/base_options.py
index ba7a4b2..d735bd9 100755
--- a/options/base_options.py
+++ b/options/base_options.py
@@ -59,6 +59,9 @@ class BaseOptions():
self.parser.add_argument('--n_clusters', type=int, default=10, help='number of clusters for features')
self.parser.add_argument('--verbose', action='store_true', default = False, help='toggles verbose')
+ # recursive stuff
+ self.parser.add_argument('--poll_delay', type=float, default=0.01, help='time to wait when looking for next recursive image')
+
self.initialized = True
def parse(self, save=True):