diff options
Diffstat (limited to 'test-mogrify.py')
| -rw-r--r-- | test-mogrify.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test-mogrify.py b/test-mogrify.py index d181ddf..787f07d 100644 --- a/test-mogrify.py +++ b/test-mogrify.py @@ -90,7 +90,6 @@ if __name__ == '__main__': img = cv2.Canny(img, data_opt.canny_lo, data_opt.canny_hi) if processed is False: - print("No processing occurred.") return img src_img = im[:, :, ::-1].copy() @@ -178,8 +177,11 @@ if __name__ == '__main__': tmp_path = render_dir + "frame_{:05d}_tmp.png".format(i+1) edges_path = render_dir + "frame_{:05d}.png".format(i+1) render_path = render_dir + "ren_{:05d}.png".format(i+1) + print(render_path) + print(edges_path) if A_dir is not None: sequence_path = A_dir.format(A_offset+i+1) + print(sequence_path) # A_offset # save rendered image |
