Skip to content

Commit

Permalink
Add NEWS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
timholy committed Sep 6, 2021
1 parent 781c058 commit e7b3e17
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# NEWS

Release 1.6:

- New `flood` and `flood_fill!` algorithms allow segmenting just the portion of the image connected to a seed point.
- `seeded_region_growing` now allows seeds to be supplied with pair syntax, e.g.,
`[CartesianIndex(300,97) => 1, CartesianIndex(145,218) => 2]`.
- Kernel/window dimensions supplied in vector format are deprecated. Instead of supplying the neighborhood size as `[3,3]`, use `(3, 3)` (`seeded_region_growing` and `unseeded_region_growing`).
- `felzenswalb` now supports multidimensional images.
- Output types use `floattype` in more places. In some cases this has resulted in `RGB{Float32}` rather than `RGB{Float64}` outputs.

0 comments on commit e7b3e17

Please sign in to comment.