Module org.scijava.ops.image
Class NormalizeIILazy<I extends RealType<I>,O extends RealType<O>>
- java.lang.Object
-
- org.scijava.ops.image.image.normalize.NormalizeIILazy<I,O>
-
- Type Parameters:
I- - the type of the input imageO- - the type of the output image
- All Implemented Interfaces:
BiConsumer<RandomAccessibleInterval<I>,RandomAccessibleInterval<O>>,Computers.Arity1<RandomAccessibleInterval<I>,RandomAccessibleInterval<O>>
public class NormalizeIILazy<I extends RealType<I>,O extends RealType<O>> extends Object implements Computers.Arity1<RandomAccessibleInterval<I>,RandomAccessibleInterval<O>>
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 NormalizeIILazy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcompute(RandomAccessibleInterval<I> input, RandomAccessibleInterval<O> output)TODO-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.function.BiConsumer
andThen
-
Methods inherited from interface org.scijava.function.Computers.Arity1
accept
-
-
-
-
Method Detail
-
compute
public void compute(RandomAccessibleInterval<I> input, RandomAccessibleInterval<O> output)
TODO
-
-