imagej / imagej-common

ImageJ core data model
https://imagej.net/libs/imagej-common
BSD 2-Clause "Simplified" License
10 stars 18 forks source link

ROIService: allow converting ROIs to ImgLabeling #96

Closed imagejan closed 2 years ago

imagejan commented 3 years ago

This pull request adds two new signatures to ROIService:

This makes it possible to write a script like this to get an ImgLabeling from the current overlay in Fiji:

#@ ROIService roiService
#@ Dataset dataset

labeling = roiService.toImgLabeling(dataset)
result = labeling.getIndexImg() // to get something that can be displayed

Also bump to pom-scijava-29.2.1 (this requires pinning to imglib2-5.9.2 as long as #95 is not merged).