Skip to content

Instantly share code, notes, and snippets.

@tomahim
Created March 3, 2018 17:40
Show Gist options
  • Save tomahim/c1a1a450b0da8e7e91f9c87940c1cb64 to your computer and use it in GitHub Desktop.
Save tomahim/c1a1a450b0da8e7e91f9c87940c1cb64 to your computer and use it in GitHub Desktop.
Write file to the disk with skimage
# 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