diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-15 03:55:32 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-15 03:55:32 +0200 |
| commit | 8c73f6069dd98e5484f655eda3ff5d07bf65219b (patch) | |
| tree | 4c9de8d262c68de8ad7d8e8a4f9bff9eb7ce5221 /options/dataset_options.py | |
| parent | 7d23842225e871366a77901471b365984db8ef79 (diff) | |
test
Diffstat (limited to 'options/dataset_options.py')
| -rw-r--r-- | options/dataset_options.py | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/options/dataset_options.py b/options/dataset_options.py index 0040540..530a3cf 100644 --- a/options/dataset_options.py +++ b/options/dataset_options.py @@ -78,11 +78,37 @@ class DatasetOptions(BaseOptions): self.parser.add_argument( '--recursive-frac', - default=0.5, + default=0.3, type=float, help='amount of previous step to use in recursion' ) + self.parser.add_argument( + '--sequence', + action='store_true', + help='recurse guided by image sequence' + ) + + self.parser.add_argument( + '--sequence-frac', + default=0.2, + type=float, + help='amount of sequence image to use in recursion' + ) + + self.parser.add_argument( + '--recurse-roll', + default=0, + type=int, + help='in px, roll mixed recursed image 1px to reduce vertical feedback' + ) + + self.parser.add_argument( + '--recurse-roll-axis', + default=1, + type=float, + help='axis of roll' + ) ### GRAYSCALE self.parser.add_argument( |
