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 forNearestNeighborSearchInterpolator
instances that work on aNearestNeighborSearch
.- Author:
- Tobias Pietzsch, Stephan Preibisch, Stephan Saalfeld
-
-
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 newNearestNeighborSearchInterpolator
using a copy of the passedNearestNeighborSearch
.NearestNeighborSearchInterpolator<T>
create(NearestNeighborSearch<T> search, RealInterval interval)
Creates a newNearestNeighborSearchInterpolator
using a copy of the passedNearestNeighborSearch
.
-
-
-
Method Detail
-
create
public NearestNeighborSearchInterpolator<T> create(NearestNeighborSearch<T> search)
Creates a newNearestNeighborSearchInterpolator
using a copy of the passedNearestNeighborSearch
.- Specified by:
create
in interfaceInterpolatorFactory<T,NearestNeighborSearch<T>>
-
create
public NearestNeighborSearchInterpolator<T> create(NearestNeighborSearch<T> search, RealInterval interval)
Creates a new
NearestNeighborSearchInterpolator
using a copy of the passedNearestNeighborSearch
.For now, ignore the
RealInterval
and returncreate(NearestNeighborSearch)
.- Specified by:
create
in interfaceInterpolatorFactory<T,NearestNeighborSearch<T>>
-
-