load_sample_images uses deprecated imread
See original GitHub issueDeprecationWarning:
imread
is deprecated!imread
is deprecated in SciPy 1.0.0, and will be removed in 1.2.0.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:11 (4 by maintainers)
Top Results From Across the Web
scipy.misc module has no attribute imread? - Stack Overflow
imread is deprecated in SciPy 1.0.0, and will be removed in 1.2.0. Use imageio.imread instead.
Read more >scipy.misc.imread — SciPy v1.1.0 Reference Guide
imread is deprecated in SciPy 1.0.0, and will be removed in 1.2.0. Use imageio.imread instead. Read an image from a file ...
Read more >Imageio.imread() Replaces Scipy.misc.imread()
However, recently, users were notified that this function is deprecated: We're encouraged to use the imageio.imread() function instead.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
So currently users of our imread need to have PIL or Pillow installed. We should keep that assumption, for now. Which basically means we need to copy the implementation of scipy.misc.imread. We could extend this to allowing imageio to be installed instead in the future.
Hm… I guess we use pillow directly? @GaelVaroquaux @jnothman opinions?