Uses of Interface
fr.igred.omero.roi.ROI
-
Packages that use ROI Package Description fr.igred.omero.containers This package contains interfaces and classes related to the hierarchical organization for images,fr.igred.omero.core This package contains interfaces and classes to handle images and their content, such as pixels, channels or planes.fr.igred.omero.roi This package contains wrapper classes for OMERO shapes and ROIs. -
-
Uses of ROI in fr.igred.omero.containers
Methods in fr.igred.omero.containers that return types with arguments of type ROI Modifier and Type Method Description java.util.List<ROI>
Folder. getROIs(DataManager dm, long imageId)
Gets the ROIs contained in the folder associated with the provided image ID.default java.util.List<ROI>
Folder. getROIs(DataManager dm, Image image)
Gets the ROIs contained in the folder associated with the provided image.java.util.List<ROI>
FolderWrapper. getROIs(DataManager dm, long imageId)
Gets the ROIs contained in the folder associated with the provided image ID.Methods in fr.igred.omero.containers with parameters of type ROI Modifier and Type Method Description default void
Folder. addROIs(DataManager dm, long imageId, ROI... rois)
Adds ROIs to the folder and associate them to the provided image ID.default void
Folder. addROIs(DataManager dm, Image image, ROI... rois)
Adds ROIs to the folder and associate them to the provided image.default void
Folder. unlinkROIs(DataManager dm, ROI... rois)
Unlink ROIs from the folder. -
Uses of ROI in fr.igred.omero.core
Methods in fr.igred.omero.core that return types with arguments of type ROI Modifier and Type Method Description java.util.List<ROI>
Image. getROIs(DataManager dm)
Gets all ROIs linked to the image in OMEROjava.util.List<ROI>
ImageWrapper. getROIs(DataManager dm)
Gets all ROIs linked to the image in OMEROdefault java.util.List<ROI>
Image. saveROIs(DataManager dm, ROI... rois)
Links ROIs to the image in OMERO.java.util.List<ROI>
Image. saveROIs(DataManager dm, java.util.Collection<? extends ROI> rois)
Links ROIs to the image in OMERO.java.util.List<ROI>
ImageWrapper. saveROIs(DataManager dm, java.util.Collection<? extends ROI> rois)
Links ROIs to the image in OMERO.Methods in fr.igred.omero.core with parameters of type ROI Modifier and Type Method Description default java.util.List<ROI>
Image. saveROIs(DataManager dm, ROI... rois)
Links ROIs to the image in OMERO.default ImagePlus
Image. toImagePlus(Client client, ROI roi)
Gets the imagePlus from the image generated from the ROI.Method parameters in fr.igred.omero.core with type arguments of type ROI Modifier and Type Method Description java.util.List<ROI>
Image. saveROIs(DataManager dm, java.util.Collection<? extends ROI> rois)
Links ROIs to the image in OMERO.java.util.List<ROI>
ImageWrapper. saveROIs(DataManager dm, java.util.Collection<? extends ROI> rois)
Links ROIs to the image in OMERO. -
Uses of ROI in fr.igred.omero.roi
Classes in fr.igred.omero.roi that implement ROI Modifier and Type Class Description class
ROIWrapper
Class containing a ROIData object.Methods in fr.igred.omero.roi that return types with arguments of type ROI Modifier and Type Method Description static java.util.List<ROI>
ROI. fromImageJ(java.util.Collection<? extends Roi> ijRois, java.lang.String property, java.util.function.Supplier<? extends ROI> constructor, java.util.function.Function<? super Roi,? extends java.lang.Iterable<? extends Shape>> converter)
Converts a collection of ImageJ ROIs to a list of OMERO ROIs using the provided constructor and shape converter.static java.util.List<ROI>
ROI. fromImageJ(java.util.Collection<? extends Roi> ijRois, java.util.function.Supplier<? extends ROI> constructor, java.util.function.Function<? super Roi,java.lang.Iterable<? extends Shape>> converter)
Converts an ImageJ list of ROIs to a list of OMERO ROIs using the provided constructor and shape converter.static java.util.List<ROI>
ROIWrapper. fromImageJ(java.util.Collection<? extends Roi> ijRois)
Converts a collection of ImageJ ROIs to a list of OMERO ROIsstatic java.util.List<ROI>
ROIWrapper. fromImageJ(java.util.Collection<? extends Roi> ijRois, java.lang.String property)
Converts a collection of ImageJ ROIs to a list of OMERO ROIsMethod parameters in fr.igred.omero.roi with type arguments of type ROI Modifier and Type Method Description static java.util.List<ROI>
ROI. fromImageJ(java.util.Collection<? extends Roi> ijRois, java.lang.String property, java.util.function.Supplier<? extends ROI> constructor, java.util.function.Function<? super Roi,? extends java.lang.Iterable<? extends Shape>> converter)
Converts a collection of ImageJ ROIs to a list of OMERO ROIs using the provided constructor and shape converter.static java.util.List<ROI>
ROI. fromImageJ(java.util.Collection<? extends Roi> ijRois, java.util.function.Supplier<? extends ROI> constructor, java.util.function.Function<? super Roi,java.lang.Iterable<? extends Shape>> converter)
Converts an ImageJ list of ROIs to a list of OMERO ROIs using the provided constructor and shape converter.static java.util.List<Roi>
ROI. toImageJ(java.util.Collection<? extends ROI> rois)
Converts a collection of OMERO ROIs to a list of ImageJ ROIs.static java.util.List<Roi>
ROI. toImageJ(java.util.Collection<? extends ROI> rois, java.lang.String property)
Converts a collection of OMERO ROIs to a list of ImageJ ROIs.static java.util.List<Roi>
ROI. toImageJ(java.util.Collection<? extends ROI> rois, java.lang.String property, boolean groupRois)
Converts a collection of OMERO ROIs to a list of ImageJ ROIs.
-