Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the data scaling and clipping behavior of denoise_wavelet #3584

Merged
merged 16 commits into from Oct 8, 2019

Commits on Sep 16, 2019

  1. fix: in denoise_wavelet, if the image is rescaled, sigma should be too

    fix: remove clipping of output for floating-point inputs
    
    img_as_float no longer automatically rescales floating point inputs to [0, 1] or [-1, 1]
    so this clipping was no longer appropriate.
    
    TST: add unscaled floating point test case to denoise_wavelet
    grlee77 committed Sep 16, 2019
    Copy the full SHA
    173eddc View commit details
    Browse the repository at this point in the history
  2. DOC: update release notes

    grlee77 committed Sep 16, 2019
    Copy the full SHA
    431ce02 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    e70cb7c View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    4210606 View commit details
    Browse the repository at this point in the history
  5. pep8 fix

    grlee77 committed Sep 16, 2019
    Copy the full SHA
    f0f6bd1 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    641b890 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    821fa39 View commit details
    Browse the repository at this point in the history
  8. setting clip_output must occur prior to _scale_sigma_and_image_consis…

    …tently
    
    raise a ValueError if convert2ycbcr is specified for a non-multichannel image
    grlee77 committed Sep 16, 2019
    Copy the full SHA
    5642c1e View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    412de30 View commit details
    Browse the repository at this point in the history
  10. Copy the full SHA
    a8f26ff View commit details
    Browse the repository at this point in the history
  11. Add rescale_sigma argument to denoise wavelet.

    This default value of None is equivalent to True but will raise a DeprecationWarning
    Setting rescale_sigma=False restores the old behaviour (no rescaling)
    grlee77 committed Sep 16, 2019
    Copy the full SHA
    51598d9 View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    0ce4f5c View commit details
    Browse the repository at this point in the history
  13. Copy the full SHA
    e2df245 View commit details
    Browse the repository at this point in the history
  14. use versionadded and versionchanged in denoise_wavelet docstring

    adjust docstring indentation
    
    add missing backtick in denoise_wavelet docstring
    grlee77 committed Sep 16, 2019
    Copy the full SHA
    5f29df1 View commit details
    Browse the repository at this point in the history
  15. Copy the full SHA
    2d7e2c9 View commit details
    Browse the repository at this point in the history
  16. Copy the full SHA
    459813b View commit details
    Browse the repository at this point in the history