Closed imagejan closed 2 years ago
NB: needed to pin to imglib2 >= 5.9.0
to be able to use the new ImgView.wrap
signature.
@ctrueden if this gets merged, we probably need to bump the major/minor version again, right?
NB: needed to pin to imglib2 >= 5.9.0 to be able to use the new ImgView.wrap signature.
This pull request has been open long enough that we don't need this version pin any more, as the parent POM was updated in the meantime. I instead also removed the imglib2-roi
version pinning from pom.xml
, as the managed version is now higher than the one that was originally pinned.
Replaces:
Img -> ImgLabeling
by:RandomAccessibleInterval -> ImgLabeling
We want this converter to handle any
RandomAccessibleInterval
, since otherwise a conversion request fromRandomAccessibleInterval
toImgLabeling
could be picked up byorg.scijava.convert.DefaultConverter
, resulting in an undesired (and possibly invalid)ImgLabeling
created by its default constructor.This is a follow-up pull request to #93.
See also this discussion on the forum.