Marianne Corvellec

Results 119 comments of Marianne Corvellec

The `1` is consistent with the plain equations (also in other docstrings for transforms of the same family). I have reverted 5e8e1a84a75ae6a8e4dd456dbe31ca4ee4884ea7 where I had right-aligned two matrices. I'm not...

> sign is ignored Thanks, I wouldn't have guessed. > ``` > [[a0 -b0 a1] > [b0 a0 b1] > [0 0 1 ]] > ``` Ok, done f662e90d986999f329141e451a77da0c836d0238.

@lagru should I label this PR 'quick win' or milestone 0.23?

Thanks for reporting, @anwolosz! I would be tempted to fix the docstring, replacing "If `gaussian_weights` is True, this is ignored and the window size will depend on `sigma`." with "If...

Hmm, the docstring may be 'right' in the end. I just compared: ![bg_color_None](https://github.com/scikit-image/scikit-image/assets/2227806/01601f8e-3965-43f0-bce0-811dabc9c94c) by running ```py color_contours = ski.color.label2rgb( contour_mask, image=sample_result, alpha=0.4, bg_color=(1, 1, 1) ) color_contours_None = ski.color.label2rgb( contour_mask,...

Sorry, this would be the full comparison: ![bg_color_unspecified](https://github.com/scikit-image/scikit-image/assets/2227806/5f33c17a-ab69-477e-935c-1f67d1e6c274) adding ```py color_contours_unspecified = ski.color.label2rgb( contour_mask, image=sample_result, alpha=0.4 ) ```

Thanks, @adfoucart! Could you consider using a pre-commit hook, which runs some auto-formatters when you do a git commit: ```bash pre-commit install ``` (cf. https://scikit-image.org/docs/stable/contribute.html#development-process)? This could spare us the...

Hello, @pokecheater thanks for your interest! @almarklein would you have any comment to add here? Thank you!

@ElpadoCan are you able to read your image with either tifffile or imageio, and then process it with scikit-image?