Package net.imglib2.interpolation
Interface InterpolatorFactory<T,F>
-
- Type Parameters:
T
- Type of values provided by the interpolator.F
- Type of function, which the interpolator operates on.
- All Known Implementing Classes:
FloorInterpolatorFactory
,InverseDistanceWeightingInterpolatorFactory
,LanczosInterpolatorFactory
,NearestNeighborInterpolatorFactory
,NearestNeighborSearchInterpolatorFactory
,NLinearInterpolatorARGBFactory
,NLinearInterpolatorFactory
public interface InterpolatorFactory<T,F>
- Author:
- Stephan Preibisch, Stephan Saalfeld, Tobias Pietzsch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RealRandomAccess<T>
create(F f)
RealRandomAccess<T>
create(F f, RealInterval interval)
-
-
-
Method Detail
-
create
RealRandomAccess<T> create(F f)
-
create
RealRandomAccess<T> create(F f, RealInterval interval)
-
-