You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In csv_to_images.py file, an issue occurs:
"AttributeError: module 'scipy.misc' has no attribute 'imsave'"
To run correctly and avoid error
"scipy.misc.imsave(image_file, stacked_image)"
can be changed to
"imageio.imwrite(image_file, stacked_image)"
and
"import imageio"
must be added.
Thats it, it works properly now.
The text was updated successfully, but these errors were encountered:
In csv_to_images.py file, an issue occurs:
"AttributeError: module 'scipy.misc' has no attribute 'imsave'"
To run correctly and avoid error
"scipy.misc.imsave(image_file, stacked_image)"
can be changed to
"imageio.imwrite(image_file, stacked_image)"
and
"import imageio"
must be added.
Thats it, it works properly now.
The text was updated successfully, but these errors were encountered: