diff options
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( |
