Add a helper function to check for low contrast
Add a check for low contrast when using imsave
Use the low contrast helper in imshow and make sure warnings are always shown
Clean up parameter names and add doctests
Remove unnecessary warning context
Remove unnecessary warning context
Add dtype ranges for 64bit types
Update tests with new warnings
Fix doctest logic
Fix doctest logic
Add a low contrast test with multiple dtypes
Fix check for color images
Fix color check again
Add support for int32 types
Relax assertion for 32bit builds
Add a low contrast test with multiple dtypes
Add a low contrast test with multiple dtypes
Fix check for color images
Fix color check again
Add support for int32 types
Do not provide imshow, show in PIL plugin to prevent conflicts
Make the sphinx install quiet
Fix local linka
Fix literal blocks
Fix another local link
Fix richardson-lucy link
Assert world dominance
- images are displayed within their native dtype range,
- unless they are outside of their range (e.g. a float image with
values greater than 1) or they are of an unsupported dtype (e.g.
a uint64 image), in which case the dynamic range of the display
corresponds to the image range,
- which is also done for images with extremely low contrast for their
native range (e.g. float images in [1e-7, 5e-7].
In the latter two cases, a colorbar is also displayed and a warning is
raised.
Finally, we return the axes object on which the image is plotted, to
enable further plotting in the matplotlib new OO style.
Fix handling of multiple warnings
Update all test __init__ files
Update segmentation pkg
Update the color pkg
Update the exposure pkg
Update the filters pkg
Update the io pkg
Update the measure pkg
Update morphology package
Restructure test setup function
Add expected_warnings to __all__
Update restoration pkg.
Remove explicit filter check since it is done elsewhere
Fix the image test helpers
Update the transform pkg
Fix util pkg
Update viewer pkg
Punt on the issue of warnings with the minimum build
Handle warnings in measure pkg
Fix the rank filter test by forcing a random seed in the function
Compare as boolean in imread test
Import loadmat in test_setup to avoid warning
Use a setup method for imread plugin test
Revoke unintended changes
Fix indentation to appease jni
More indentation fixes
Fix unintentional comment out
Use the pil plugin to load data files
Fix install_requires string formatting
Dead end commit
Make all tools executable
Remove debug print
Suppress PIL resourcewarnings
Handle a few more warnings
Start handling warnings in data, exposure, and draw
Add a known_warning decorator and suppress warnings in color pkg
Use the existing all_warnings context manager
Raise warnings in data
Raise warnings in draw
Raise warnings in exposure
Suppress warnings in exposure tests
Add comments about warning suppressions
Raise warnings in feature
Fix warnings in filter package
Add warning handling to graph
Handle warnings in io package
# The first commit's message is:
Add a known_warning decorator and suppress warnings in color pkg
# This is the 2nd commit message:
Use the existing all_warnings context manager
# This is the 3rd commit message:
Raise warnings in data
# This is the 4th commit message:
Raise warnings in draw
# This is the 5th commit message:
Raise warnings in exposure
# This is the 6th commit message:
Suppress warnings in exposure tests
# This is the 7th commit message:
Add comments about warning suppressions