You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix flood fill tool for coarse mags.
The 2D flood fill tool did not work properly when flood filling in a mag
other than the finest one if the "third-dimension" coordinate was not
divisible by the respective mag. This resulted in early-out flood fills
only filling a single voxel.
Also, this commit adjusts the flood fill maximum bounding size limits if
the segmentation layer's finest mag is not 1. This allows to use the
flood fill tool in coarser mags if the segmentation layer is properly
mag-restricted.
* update changelog
* Update frontend/javascripts/oxalis/model/sagas/volume/floodfill_saga.tsx
Co-authored-by: Philipp Otto <[email protected]>
* Apply naming feedback
* Add linting rule for unused imports and fix 10 occurrences
* Fix 3 new unused imports after master merge
---------
Co-authored-by: Philipp Otto <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.unreleased.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,11 +20,13 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released
20
20
21
21
### Changed
22
22
- Improved the scrolling behaviour of sliders: Sliders must be focused to scroll them. Additionally, parent element scrolling is prevented when using the slider. [#8321](https://github.com/scalableminds/webknossos/pull/8321)[#8321](https://github.com/scalableminds/webknossos/pull/8321)
23
+
- Increase the flood fill maximum bounding box size limits for segmentation layers restricted to coarser mags. [#8382](https://github.com/scalableminds/webknossos/pull/8382)
23
24
24
25
### Fixed
25
26
- Fixed a bug that lead to trees being dropped when merging to trees together. [#8359](https://github.com/scalableminds/webknossos/pull/8359)
26
27
- Fixed that the onboarding screen incorrectly appeared when a certain request failed. [#8356](https://github.com/scalableminds/webknossos/pull/8356)
27
28
- Fixed the segment registering in coarser mags for non-mag-aligned bounding boxes. [#8364](https://github.com/scalableminds/webknossos/pull/8364)
29
+
- Fixed using the flood fill tool in 2D mode for mags other than the finest one. [#8382](https://github.com/scalableminds/webknossos/pull/8382)
28
30
29
31
### Removed
30
32
- Removed the feature to downsample existing volume annotations. All new volume annotations had a whole mag stack since [#4755](https://github.com/scalableminds/webknossos/pull/4755) (four years ago). [#7917](https://github.com/scalableminds/webknossos/pull/7917)
failureReason: `The bounding box that encloses the clicked position is too large. Shrink its size so that it does not contain more than ${maximumVoxelSize} voxels.`,
89
+
failureReason: `The bounding box that encloses the clicked position is too large, containing ${bboxVolume} voxels. Shrink its size so that it does not contain more than ${maxBboxVolume} voxels.`,
0 commit comments