- java.lang.Object
-
- org.scijava.ops.image.describe.ImgLib2Descriptors
-
public class ImgLib2Descriptors extends Object
engine.describeOps pertaining to ImgLib2 types.Note the heavy use of wildcards which provides extensibility, as it allows e.g.
raiDesc(Nil)to be used for e.g.ArrayImgs- Author:
- Gabriel Selzer
-
-
Constructor Summary
Constructors Constructor Description ImgLib2Descriptors()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StringcomplexTypeDesc(Nil<? extends ComplexType<?>> inType)static StringiiDesc(Nil<? extends IterableInterval<?>> inType)static StringlabelDesc(Nil<? extends ImgLabeling<?,?>> inType)static StringraiDesc(Nil<? extends RandomAccessibleInterval<?>> inType)static StringrealTypeDesc(Nil<? extends RealType<?>> inType)
-
-
-
Method Detail
-
iiDesc
public static String iiDesc(Nil<? extends IterableInterval<?>> inType)
- Parameters:
inType- the type (someIterableInterval) subclass to describe- Returns:
- the description
- Implementation Note:
- op name="engine.describe", priority='-100.'
-
raiDesc
public static String raiDesc(Nil<? extends RandomAccessibleInterval<?>> inType)
- Parameters:
inType- the type (someRandomAccessibleIntervalsubclass) to describe- Returns:
- the description
- Implementation Note:
- op name="engine.describe"
-
labelDesc
public static String labelDesc(Nil<? extends ImgLabeling<?,?>> inType)
- Parameters:
inType- the type (someImgLabelingsubclass) to describe- Returns:
- the description
- Implementation Note:
- op name="engine.describe", priority='100.'
-
realTypeDesc
public static String realTypeDesc(Nil<? extends RealType<?>> inType)
- Parameters:
inType- the type (someRealTypesubclass) to describe- Returns:
- the description
- Implementation Note:
- op name="engine.describe"
-
complexTypeDesc
public static String complexTypeDesc(Nil<? extends ComplexType<?>> inType)
- Parameters:
inType- the type (someComplexTypesubclass) to describe- Returns:
- the description
- Implementation Note:
- op name="engine.describe", priority='-100.'
-
-