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 Object
implements InterpolatorFactory<T,NearestNeighborSearch<T>>
Factory for
NearestNeighborSearchInterpolator instances that work on
a NearestNeighborSearch.- Author:
- Tobias Pietzsch, Stephan Preibisch, Stephan Saalfeld
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreate(NearestNeighborSearch<T> search) Creates a newNearestNeighborSearchInterpolatorusing a copy of the passedNearestNeighborSearch.create(NearestNeighborSearch<T> search, RealInterval interval) Creates a newNearestNeighborSearchInterpolatorusing a copy of the passedNearestNeighborSearch.
-
Constructor Details
-
NearestNeighborSearchInterpolatorFactory
public NearestNeighborSearchInterpolatorFactory()
-
-
Method Details
-
create
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>>
-