Uses of Class
fr.igred.omero.roi.ROIWrapper
-
Packages that use ROIWrapper Package Description fr.igred.omero.repository This package contains classes related to the hierarchical organization for images.fr.igred.omero.roi This package contains wrapper classes for OMERO shapes and ROIs. -
-
Uses of ROIWrapper in fr.igred.omero.repository
Methods in fr.igred.omero.repository that return types with arguments of type ROIWrapper Modifier and Type Method Description java.util.List<ROIWrapper>
FolderWrapper. getROIs(Client client)
Gets the ROI contained in the folder associated with the image id set (an image need to be associated)java.util.List<ROIWrapper>
ImageWrapper. getROIs(Client client)
Gets all ROIs linked to the image in OMEROjava.util.List<ROIWrapper>
ImageWrapper. saveROIs(Client client, java.util.Collection<? extends ROIWrapper> rois)
Links ROIs to the image in OMERO.Methods in fr.igred.omero.repository with parameters of type ROIWrapper Modifier and Type Method Description void
FolderWrapper. addROI(Client client, ROIWrapper roi)
Add an ROI to the folder and associate it to the image id set(an image need to be associated)void
ImageWrapper. saveROI(Client client, ROIWrapper roi)
Links a ROI to the image in OMEROImagePlus
ImageWrapper. toImagePlus(Client client, ROIWrapper roi)
Gets the imagePlus from the image generated from the ROI.void
FolderWrapper. unlinkROI(Client client, ROIWrapper roi)
Unlink an ROI, associated to the image set, in the folder.Method parameters in fr.igred.omero.repository with type arguments of type ROIWrapper Modifier and Type Method Description java.util.List<ROIWrapper>
ImageWrapper. saveROIs(Client client, java.util.Collection<? extends ROIWrapper> rois)
Links ROIs to the image in OMERO. -
Uses of ROIWrapper in fr.igred.omero.roi
Methods in fr.igred.omero.roi that return types with arguments of type ROIWrapper Modifier and Type Method Description static java.util.List<ROIWrapper>
ROIWrapper. fromImageJ(java.util.List<? extends Roi> ijRois)
Converts an ImageJ list of ROIs to a list of OMERO ROIsstatic java.util.List<ROIWrapper>
ROIWrapper. fromImageJ(java.util.List<? extends Roi> ijRois, java.lang.String property)
Converts an ImageJ list of ROIs to a list of OMERO ROIsMethod parameters in fr.igred.omero.roi with type arguments of type ROIWrapper Modifier and Type Method Description static java.util.List<Roi>
ROIWrapper. toImageJ(java.util.List<? extends ROIWrapper> rois)
Converts an OMERO list of ROIs to a list of ImageJ ROIsstatic java.util.List<Roi>
ROIWrapper. toImageJ(java.util.List<? extends ROIWrapper> rois, java.lang.String property)
Converts an OMERO list of ROIs to a list of ImageJ ROIs
-