-
Notifications
You must be signed in to change notification settings - Fork 17
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
Update dependency scikit-image to v0.25.2 #205
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/scikit-image-0.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
249b6de
to
78fd6b1
Compare
78fd6b1
to
f43e36b
Compare
f43e36b
to
483602b
Compare
483602b
to
3e2f4c7
Compare
3e2f4c7
to
ea4c25c
Compare
ea4c25c
to
75d05bf
Compare
75d05bf
to
0ca9195
Compare
0ca9195
to
767cdf7
Compare
767cdf7
to
d01c6e4
Compare
d01c6e4
to
57277d0
Compare
57277d0
to
f082ee3
Compare
f082ee3
to
6553d3f
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==0.17.2
->==0.25.2
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
scikit-image/scikit-image (scikit-image)
v0.25.2
Compare Source
scikit-image 0.25.2
We're happy to announce the release of scikit-image 0.25.2!
Bug Fixes
skimage.graph.cut_normalized
gracefully (#7675).skimage.feature.BRIEF
, copykeypoints
if necessary to preserve contiguity (#7692).skimage.segmentation.watershed
that unintentionally changed the algorithm's behavior for markers placed at maxima in the image. We decided that the behavior originally reported as a bug (gh-6632), is not actually one (#7702).Documentation
skimage.restoration.rolling_ball
(#7682).Infrastructure
Maintenance
Contributors
6 authors added to this release (alphabetically):
8 reviewers added to this release (alphabetically):
These lists are automatically generated, and may not be complete or may contain duplicates.
v0.25.1
Compare Source
scikit-image 0.25.1
We're happy to announce the release of scikit-image 0.25.1!
Bug Fixes
centroid
in__all__
of the PYI file inskimage.measure
(#7652).blur_effect
(#7643).skimage.measure.EllipseModel
will now warn and returnFalse
(no fit) when fewer than 5 data points are provided (#7648).data
with dtypefloat16
tofloat32
inskimage.segmentation.random_walker
; this fixes passingfloat16
on NumPy 1.26 (#7655).Documentation
QuadContourSet.collections
in gallery example (#7638).Infrastructure
Maintenance
skimage.segmentation.active_contour
, change the type of the default argument forw_line
to indicate it is a float (#7645).Contributors
8 authors added to this release (alphabetically):
8 reviewers added to this release (alphabetically):
These lists are automatically generated, and may not be complete or may contain duplicates.
v0.25.0
Compare Source
scikit-image 0.25.0
We're happy to announce the release of scikit-image 0.25.0!
New Features
skimage.feature.texture.graycoprops
(#7375).skimage.morphology.footprint_rectangle
supporting generation of rectangular or hyper-rectangular footprints in one function (#7566).API Changes
skimage.feature.plot_matches
. Useskimage.feature.plot_matched_features
going forward (#7487).skimage.io.imshow
,skimage.io.imshow_collection
andskimage.io.show
. Please usematplotlib
,napari
, etc. to visualize images (#7508).skimage.morphology.skeletonize_3d
; useskimage.morphology.skeletonize
instead (#7572).skimage.io
plugin infrastructure (#7353).scipy.sparse
array interface. For more details, see the note about the newscipy.sparse
array interface here (#7576).skimage.morphology.rectangle
in favor of the new functionskimage.morphology.footprint_rectangle
(#7566).skimage.morphology.square
in favor of the new functionskimage.morphology.footprint_rectangle
(#7566).skimage.morphology.cube
in favor of the new functionskimage.morphology.footprint_rectangle
(#7566).Enhancements
skimage.morphology.local_minima
for extremely small floats (#7534).skimage.feature.plot_matched_features
uses the same random colors, ifmatches_color
isn't provided explicitly (#7541).matches_color
inskimage.feature.plot_matched_features
(#7541).Performance
skimage.feature.peak_local_max
will now skip unnecessary distance computations in the case ofmin_distance=1
. This results in performance improvements to functions likeskimage.feature.blob_dog
,skimage.feature.blob_log
,skimage.feature.blob_doh
andskimage.feature.corner_peaks
that callpeak_local_max
internally (#7548).skimage.featurepeak_local_max
, skip unnecessary check for cases wheremin_distance > 1
is passed (#7548).Bug Fixes
skimage.morphology.remove_objects_by_distance
doesn't fail if the given integer dtype cannot be safely cast to the architecture specific size ofintp
, e.g. on i386 architectures (#7453).skimage.draw.ellipsoid_stats
when all semi-axes have the same length (#7473).skimage.morphology.thin
from accidentally modifying the input image in case it is of dtype uint8 (#7469).skimage.measure.ransac
. In some cases,ransac
was stopping at the first iteration (#7065).skimage.measure.ransac
; very small probabilities lead to -0 number of max trials (#7496).RegionProperties
objects returned byskimage.measure.regionprops
can be deserialized with pickle (#7569).watershed_lines=True
inskimage.segmentation.watershed
resulted in an incorrect solution (#7071).skimage.segmentation.watershed
when the markers don't align with local minima by making sure every marker is evaluated before successive pixels (#7071).skimage.segmentation.join_segmentations
ifnumpy.uint
is used with NumPy<2 (#7292).Documentation
skimage.morphology.skeletonize
, clarify the expected image dtypes and how objects of different intensities are handled (#7456).skimage.feature.graycomatrix
(#7297).CITATION.cff
instead ofCITATION.bib
(#7505).spin test --coverage
in contribution guide (#7515).image
parameter inskimage.restoration.richardson_lucy
(#7477).radius
inskimage.morphology.ball
fromint
tofloat
(#7627).Infrastructure
currentmodule
directive again (#7492).type:
label is present in PRs (#7512).s_cmp
unresolved symbol error, update Emscripten CI testing (#7525).Maintenance
spin sdist
(#7438).Rotation.from_euler
to compute 3D rotation matrix (#7503).lazy_loader
as private symbol in top-level namespaces (#7540).io.show
andio.imshow
(#7556).assert_stacklevel
(#7558).changelist
to v0.5 (#7601).intersphinx_registry
package inconf.py
to keep intersphinx urls up to date. This means that building docs now requires theintersphinx-registry
package (#7611).square
,cube
&rectangle
(#7624).skimage
top module (#6892).Contributors
30 authors added to this release (alphabetically):
25 reviewers added to this release (alphabetically):
These lists are automatically generated, and may not be complete or may contain duplicates.
v0.24.0
Compare Source
scikit-image 0.24.0
We're happy to announce the release of scikit-image 0.24.0!
Highlights
skimage.transform.ThinPlateSplineTransform
, which can estimate and model non-linear transforms with thin-plate splines and allows image warping withskimage.transform.warp
(#7040).New Features
skimage.transform.ThinPlateSplineTransform
, which can estimate and model non-linear transforms with thin-plate splines and allows image warping withskimage.transform.warp
(#7040).skimage.morphology.remove_objects_by_distance
, which removes labeled objects, ordered by size (default), until the remaining objects are a given distance apart (#4165).Performance
skimage.feature.corner_fast
, test four directions earlier, which should more than half the computation time for most cases (#7394).Documentation
data_range
parameter inskimage.metrics.structural_similarity
(#7345).skimage.measure.regionprops
(#7405).skimage.measure.find_contours
(#7411).skimage.restoration.rolling_ball
docstring (#7424).Infrastructure
scikit-image
(#7350).Maintenance
skimage.util.compare_images
, deprecate the parameterimage2
. Instead useimage0
,image1
to pass the compared images. Furthermore, all other parameters will be turned into keyword-only parameters once the deprecation is complete (#7322).Contributors
13 authors added to this release (alphabetically):
15 reviewers added to this release (alphabetically):
These lists are automatically generated, and may not be complete or may contain duplicates.
v0.23.2
Compare Source
scikit-image 0.23.2
We're happy to announce the release of scikit-image 0.23.2!
Bug Fixes
skimage.util.img_as_ubyte
supports the edge case wheredtype('uint64').type
of the provided image isnp.ulonglong
instead ofnp.uint64
(#7392).Documentation
connectivity
parameter inskimage.segmentation.watershed
(#7360).Infrastructure
Maintenance
numpy.inf
instead of deprecatednumpy.infty
(#7386).astype
in tests (#7393).Contributors
4 authors added to this release (alphabetically):
4 reviewers added to this release (alphabetically):
These lists are automatically generated, and may not be complete or may contain duplicates.
v0.23.1
Compare Source
scikit-image 0.23.1
We're happy to announce the release of scikit-image 0.23.1!
Highlights
skimage.morphology.closing
andskimage.morphology.opening
are extensive and anti-extensive, respectively, if the footprint is not mirror symmetric (#6695).mode
tobinary_erosion
,binary_dilation
,binary_opening
andbinary_closing
inskimage.morphology
. These new parameters determine how array borders are handled (#6695).mode
andcval
toerosion
,dilation
,opening
,closing
,white_tophat
, andblack_tophat
inskimage.morphology
. These new parameters determine how array borders are handled (#6695).skimage.util.map_array
by parallelization with Cython'sprange
(#7266).New Features
intensity_std
property toskimage.measure.regionprops
which computes the standard deviation of the intensity in a region (#6712).mode
tobinary_erosion
,binary_dilation
,binary_opening
andbinary_closing
inskimage.morphology
. These new parameters determine how array borders are handled (#6695).mirror_footprint
andpad_footprint
toskimage.morphology
(#6695).mode
andcval
toerosion
,dilation
,opening
,closing
,white_tophat
, andblack_tophat
inskimage.morphology
. These new parameters determine how array borders are handled (#6695).spacing
tosegmentation.expand_labels
to support anisotropic images (#7080).API Changes
shift_x
andshift_y
inskimage.morphology.erosion
andskimage.morphology.dilation
are deprecated. Usepad_footprint
or modify the footprint manually instead (#6695).skimage.morphology.skeletonize_3d
for non-binary input images.skeletonize_3d
now always returns a binary array like similar functions (#7095).skimage.feature.plot_matches
in favor ofskimage.feature.plot_matched_features
(#7255).skimage.morphology.skeletonize_3d
in favor of justskimage.morphology.skeletonize
(#7094).output
inskimage.filters.gaussian
; useout
instead (#7225).shift_x
,shift_y
andshift_z
fromFalse
to0
in theskimage.filters.rank
functions. This has not impact on the results. Warn in case boolean shifts are provided from now on (#7320).Performance
skimage.metrics
module (#7211).skimage.util.map_array
by parallelization with Cython'sprange
(#7266).Bug Fixes
skimage.feature.hog
(#7153).skimage.morphology.closing
andskimage.morphology.opening
are extensive and anti-extensive, respectively, if the footprint is not mirror symmetric (#6695).skimage.registration.phase_cross_correlation
when the real-time shift cannot be determined (disambiguate=True
). Display a warning instead (#7259).skimage.graph.pixel_graph
which raised aTypeError
when the parameteredge_function
was provided without amask
(#7310).cache=False
is passed toskimage.measure.regionprops
(#7333).Documentation
skimage.graph
module (#7192).xarray.DataArray
andpandas.DataFrame
in the crash course on NumPy for images (#7159).skimage.transform.swirl
(#7241).moments_normalized
(#7248).skimage.registration.optical_flow_tvl1
(#7314).coordinates
from docstring example ofskimage.segmentation.active_contour
(#7329).data_range
parameter inskimage.metrics.structural_similarity
(#7345).skimage.transform.EuclideanTransform
(#7097).Infrastructure
assert_stacklevel
helper to check stacklevel of captured warnings (#7294).pre-commit[bot]
from changelist's contributor list (#7358).Maintenance
version_switcher.json
(#7184)._hog.py
after previous merge lacking black (#7215).noexcept
to address Cython 3.0 warnings (#7250).deprecate_parameter
helper (#7256).skimage.registration.phase_cross_correlation
(#7287).deprecate_kwarg
andremove_arg
; they are entirely succeeded bydeprecate_parameter
(#7290).numpydoc
installed (#7307)._optical_flow_utils
are private (#7328).test_fits.py
(#7340).np.solve
in NumPy 2 (#7341).ensure_python_version
function (#7370).setup-python@v5
,cache@v4
,upload-artifact@v4
, anddownload-artifact@v4
(#7368).Contributors
29 authors added to this release (alphabetically):
21 reviewers added to this release (alphabetically):
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.