Marianne Corvellec
Marianne Corvellec
How did you notice this? I tried searching for 'libomp' in the actions/runs logs for macos-cp* (to no avail).
Right, it looks like the issue stems from `skimage.util.img_as_float` (or, likewise, `skimage.util.img_as_float32`), since: ```py import numpy as np import skimage as ski arr = np.array([[1, 1], [1, 1]]) ski.util.img_as_float(arr) #...
> Hey everyone, > I really like the idea, but thinking on the "beginner", I was wondering if `rescale_to...` wouldn't be confused with the `rescale` operation (ours on `skimage.transform.rescale`). >...
fyi the CI failure is due to this issue https://github.com/sphinx-doc/sphinx/issues/12660#issuecomment-2246335055 (unresolved to this day, as far as I know); confirming it's unrelated to this PR.
@geeanlooca note that you can apply multiple suggestions in a single batch: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/incorporating-feedback-in-your-pull-request
@decorouz looks like there are leftover instances of `skimage.morphology.max_tree` which would need renaming into `skimage.morphology._max_tree`.
Closes #7790
See the updated rendered gallery example [here](https://output.circle-artifacts.com/output/job/7126732c-8d0a-400f-a83d-27773d77e483/artifacts/0/doc/build/html/auto_examples/transform/plot_ssim.html#sphx-glr-auto-examples-transform-plot-ssim-py). @Gigarrum note that the intensity values of `img_noise` (image with noise) range from -0.2 to 1.2, while those of `img_const` (image plus constant)...
Thanks for reviewing, @Joshua-Chin! > The clipped images are effectively what the code is plotting. Yes, because we use `vmin=0, vmax=1` in the `imshow` function. But the *computation* of the...
@lagru please review when you get the chance! The last commit doesn't add anything, it's just stylistic.