diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-08-21 15:01:42 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-08-21 15:01:42 +0200 |
| commit | 64ffd2400c098eeee7483799b9a3d03839c70e9c (patch) | |
| tree | 3a730f0cee57c50e1e6b1e15736951a534352be6 /options/dataset_options.py | |
| parent | e51a822f7257fdc06be4dfee9e3aafacd0c07232 (diff) | |
skip frames
Diffstat (limited to 'options/dataset_options.py')
| -rw-r--r-- | options/dataset_options.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/options/dataset_options.py b/options/dataset_options.py index b1c453a..f8b7fe7 100644 --- a/options/dataset_options.py +++ b/options/dataset_options.py @@ -96,7 +96,7 @@ class DatasetOptions(BaseOptions): self.parser.add_argument( '--store-b', - action='store_true', + action='store_false', help='after generating a B image, save it to disk' ) @@ -253,6 +253,13 @@ class DatasetOptions(BaseOptions): ) self.parser.add_argument( + '--sequence-skip', + default=0.0, + type=float, + help='sequence frames to skip' + ) + + self.parser.add_argument( '--sequence-playing', action='store_false', help='pause sequence iterator' |
