diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-15 05:32:03 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-15 05:32:03 +0200 |
| commit | 558d7869bdb38b7f03719cdc52d03e0a328ce6ba (patch) | |
| tree | e63bdb6866b95c82eedfbf8e76c6a6f12765f83e | |
| parent | 67f327dbfcbe849184685d7f003457fdfb4588a6 (diff) | |
yes
| -rw-r--r-- | test-mogrify-recursive.sh | 4 | ||||
| -rw-r--r-- | test-mogrify.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test-mogrify-recursive.sh b/test-mogrify-recursive.sh index 91e6072..25c3d01 100644 --- a/test-mogrify-recursive.sh +++ b/test-mogrify-recursive.sh @@ -21,8 +21,8 @@ how_many=200 --start_img "/home/lens/Desktop/woods_videos/processed/combined/frame_00003.png" \ --experiment "spin_sequence" \ --name pcfade \ - --sequence --sequence-frac 0.999 \ - --recursive --recursive-frac 0.0005 \ + --sequence --sequence-frac 0.3 \ + --recursive --recursive-frac 0.4 \ --loadSize 256 --fineSize 256 --how_many 200 \ --model test --which_model_netG unet_256 \ --which_direction AtoB --dataset_mode recursive \ diff --git a/test-mogrify.py b/test-mogrify.py index cd1bec0..9dcae86 100644 --- a/test-mogrify.py +++ b/test-mogrify.py @@ -93,8 +93,8 @@ if __name__ == '__main__': processed = True img = cv2.Canny(img, data_opt.canny_lo, data_opt.canny_hi) - # if processed is False: - # return img + if processed is False: + return img src_img = im[:, :, ::-1].copy() frac_a = data_opt.process_frac |
