Class NearestNeighborSearchInterpolatorFactory<T>
- java.lang.Object
-
- net.imglib2.interpolation.neighborsearch.NearestNeighborSearchInterpolatorFactory<T>
-
- Type Parameters:
T-
- All Implemented Interfaces:
InterpolatorFactory<T,NearestNeighborSearch<T>>
public class NearestNeighborSearchInterpolatorFactory<T> extends java.lang.Object implements InterpolatorFactory<T,NearestNeighborSearch<T>>
Factory forNearestNeighborSearchInterpolatorinstances that work on aNearestNeighborSearch.
-
-
Constructor Summary
Constructors Constructor Description NearestNeighborSearchInterpolatorFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NearestNeighborSearchInterpolator<T>create(NearestNeighborSearch<T> search)Creates a newNearestNeighborSearchInterpolatorusing a copy of the passedNearestNeighborSearch.NearestNeighborSearchInterpolator<T>create(NearestNeighborSearch<T> search, RealInterval interval)Creates a newNearestNeighborSearchInterpolatorusing a copy of the passedNearestNeighborSearch.
-
-
-
Method Detail
-
create
public NearestNeighborSearchInterpolator<T> create(NearestNeighborSearch<T> search)
Creates a newNearestNeighborSearchInterpolatorusing a copy of the passedNearestNeighborSearch.- Specified by:
createin interfaceInterpolatorFactory<T,NearestNeighborSearch<T>>
-
create
public NearestNeighborSearchInterpolator<T> create(NearestNeighborSearch<T> search, RealInterval interval)
Creates a new
NearestNeighborSearchInterpolatorusing a copy of the passedNearestNeighborSearch.For now, ignore the
RealIntervaland returncreate(NearestNeighborSearch).- Specified by:
createin interfaceInterpolatorFactory<T,NearestNeighborSearch<T>>
-
-