Created
March 3, 2018 17:40
-
-
Save tomahim/c1a1a450b0da8e7e91f9c87940c1cb64 to your computer and use it in GitHub Desktop.
Write file to the disk with skimage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# define a name for our new file | |
new_file_path = '%s/augmented_image_%s.jpg' % (folder_path, num_generated_files) | |
# write image to the disk | |
sk.io.imsave(new_file_path, transformed_image) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment