Releases: haesleinhuepf/napari-skimage-regionprops
Releases · haesleinhuepf/napari-skimage-regionprops
0.10.1
Bug fixes
- When double-clicking a column header that was generated from an opencl-backed labels layer, the parametric image could not be created (error in scikit-image maparray)
0.10.0
Backwards compatiblity breaking changes
regionprops_measure_things_inside_things
was renamed toregionprops_measure_relationship_to_other_channels
.
Bug fixes
Other changes
New Contributors
Full Changelog: 0.9.0...0.10.0
0.9.0
New features
map_measurements_on_labels()
function for generating parametric map images from unsorted tables and non-sequential label images. (thanks to @romainGuiet and @lazigu for raising the issue and @zoccoler for fixing it)- The
load_csv
function/menu now has a parameter/checkboxshow_table
for optionally not showing the table in the user interface. This solves issues with processing large tables (thanks to @thorstenwagner for proposing this)
Potentially backwards compatibility breaking changes
- Support for unsorted, non-sequential measurement tables was added. Thus, when double-clicking a table column header, the results may be different compared to older versions. This is technically a bugfix.
Deprecated functions
visualize_measurement_on_labels()
is deprecated. Usemap_measurements_on_labels()
instead.relabel()
is deprecated. Useskimage.util.map_array()
instead.
Full Changelog: 0.8.2...0.9.0
0.8.2
New features
- Add Object Features/Properties, a.k.a. "things inside things" by @zoccoler in #50
- adds affine and scale from existing layer by @romainGuiet in #53
- add rotate from existing layer by @haesleinhuepf in #57
- Use napari notifications by @zoccoler in #60
New Contributors
- @romainGuiet made their first contribution in #53
Full Changelog: 0.8.1...0.8.2
0.8.1
0.8.0
What's Changed
- Delayed imports and new napari tools menu by @tcompa in #38
- Relabel Image - change how the measurements list is reformed by @Cryaaa in #34
- Minor fixes @haesleinhuepf in #49
Potentially backwards compatibility breaking changes
We changed import statements internally so that we can execute functions in environments where napari and qt don't work. If you experience any issues with that, please open an issue and so that we can fix it.
New Contributors
Full Changelog: 0.7.0...0.8.0
0.7.0
Potentially backwards compatibility breaking bugfix:
- Measuring convex-hull based measurements in 3D has been disabled due to a bug in scikit-image (thanks to @zoccoler for fixing and @GenevieveBuckley and @marabuuu for reporting)
See also:
0.6.2
Changed menu locations
- Some menus have been moved from
Measurement
toMeasurement tables
andMeasurement maps
0.6.0
Bug fixes
- frame not defined error when clicking on labels (thanks to @constantinpape for reporting)
Backwards compatibility breaking changes
- Double-clicking on a table column and / or calling
visualize_measurement_on_labels()
on timelapse data now generates a dask-backed 4D layer. In version < 0.6.0 it created a 3D layer of the current timepoint. If you want to have the former functionality, duplicate the current timepoint using theTools > Utilities > Duplicate timepoint (nsr)
menu.
Full Changelog: 0.5.7...0.6.0
0.5.7
Bugfix:
- Disabled napari status bar display, see napari/napari#5417