Uses of Interface
fr.igred.omero.roi.Shape
-
Packages that use Shape Package Description fr.igred.omero.roi This package contains wrapper classes for OMERO shapes and ROIs.fr.igred.omero.util This package contains classes to handle 5D positions and boundaries as well as a utility class to check if the library requirements are available, and another one to convert DataObjects to Wrapper objects. -
-
Uses of Shape in fr.igred.omero.roi
Subinterfaces of Shape in fr.igred.omero.roi Modifier and Type Interface Description interface
Ellipse
Interface to handle Ellipse shapes on OMERO.interface
Line
Interface to handle Line shapes on OMERO.interface
Mask
Interface to handle Mask shapes on OMERO.interface
Point
Interface to handle Point shapes on OMERO.interface
Polygon
Interface to handle Polygon shapes on OMERO.interface
Polyline
Interface to handle Polyline shapes on OMERO.interface
Rectangle
Interface to handle Rectangle shapes on OMERO.interface
Text
Interface to handle Text shapes on OMERO.Classes in fr.igred.omero.roi that implement Shape Modifier and Type Class Description class
EllipseWrapper
Class containing an EllipseData.class
LineWrapper
Class containing an LineData.class
MaskWrapper
Class containing an MaskData.class
PointWrapper
Class containing an PointData.class
PolygonWrapper
Class containing an PolygonData.class
PolylineWrapper
Class containing an PolylineData.class
RectangleWrapper
Class containing an RectangleData.class
ShapeWrapper<T extends ShapeData>
Generic class containing a ShapeData (or a subclass) object.class
TextWrapper
Class containing an TextData.Methods in fr.igred.omero.roi that return types with arguments of type Shape Modifier and Type Method Description java.util.List<Shape>
ROI. getShapes()
Returns the list of shapes contained in the ROI.java.util.List<Shape>
ROIWrapper. getShapes()
Returns the list of shapes contained in the ROI.Methods in fr.igred.omero.roi with parameters of type Shape Modifier and Type Method Description void
ROI. addShape(Shape shape)
Adds a Shape to the ROI.void
ROIWrapper. addShape(Shape shape)
Adds a Shape to the ROI.Method parameters in fr.igred.omero.roi with type arguments of type Shape Modifier and Type Method Description default void
ROI. addShapes(java.lang.Iterable<? extends Shape> shapes)
Adds shape objects from a list of shapes to the ROI.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.Constructor parameters in fr.igred.omero.roi with type arguments of type Shape Constructor Description ROIWrapper(java.lang.Iterable<? extends Shape> shapes)
Constructor of the ROIWrapper class. -
Uses of Shape in fr.igred.omero.util
Methods in fr.igred.omero.util with type parameters of type Shape Modifier and Type Method Description static <T extends ShapeData,U extends Shape>
UWrapper. wrap(T object)
Converts (wraps) a ShapeData object to a Shape object.
-