Module org.scijava.ops.image
Class NormalizeIILazyFunction<I extends RealType<I>>
- java.lang.Object
-
- org.scijava.ops.image.image.normalize.NormalizeIILazyFunction<I>
-
- Type Parameters:
I- - the type of the input image
- All Implemented Interfaces:
Function<RandomAccessibleInterval<I>,RandomAccessibleInterval<I>>
public class NormalizeIILazyFunction<I extends RealType<I>> extends Object implements Function<RandomAccessibleInterval<I>,RandomAccessibleInterval<I>>
Normalizes anRandomAccessibleIntervalgiven its minimum and maximum to another range defined by minimum and maximum. TODO: Should this be a scale op?- Author:
- Christian Dietz (University of Konstanz), Leon Yang
- Implementation Note:
- op names='image.normalize'
-
-
Constructor Summary
Constructors Constructor Description NormalizeIILazyFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RandomAccessibleInterval<I>apply(RandomAccessibleInterval<I> input)TODO
-
-
-
Method Detail
-
apply
public RandomAccessibleInterval<I> apply(RandomAccessibleInterval<I> input)
TODO- Specified by:
applyin interfaceFunction<RandomAccessibleInterval<I extends RealType<I>>,RandomAccessibleInterval<I extends RealType<I>>>- Parameters:
input-- Returns:
- the output
-
-