Class NLinearInterpolatorFactory<T extends NumericType<T>>
- java.lang.Object
-
- net.imglib2.interpolation.randomaccess.NLinearInterpolatorFactory<T>
-
- Type Parameters:
T
-
- All Implemented Interfaces:
InterpolatorFactory<T,RandomAccessible<T>>
public class NLinearInterpolatorFactory<T extends NumericType<T>> extends java.lang.Object implements InterpolatorFactory<T,RandomAccessible<T>>
- Author:
- Stephan Saalfeld, Tobias Pietzsch, Stephan Preibisch
-
-
Constructor Summary
Constructors Constructor Description NLinearInterpolatorFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NLinearInterpolator<T>
create(RandomAccessible<T> randomAccessible)
NLinearInterpolator<T>
create(RandomAccessible<T> randomAccessible, RealInterval interval)
For now, ignore theRealInterval
and returncreate(RandomAccessible)
.
-
-
-
Method Detail
-
create
public NLinearInterpolator<T> create(RandomAccessible<T> randomAccessible)
- Specified by:
create
in interfaceInterpolatorFactory<T extends NumericType<T>,RandomAccessible<T extends NumericType<T>>>
-
create
public NLinearInterpolator<T> create(RandomAccessible<T> randomAccessible, RealInterval interval)
For now, ignore theRealInterval
and returncreate(RandomAccessible)
.- Specified by:
create
in interfaceInterpolatorFactory<T extends NumericType<T>,RandomAccessible<T extends NumericType<T>>>
-
-