Class InverseDistanceWeightingInterpolatorFactory<T extends RealType<T>>
- java.lang.Object
-
- net.imglib2.interpolation.neighborsearch.InverseDistanceWeightingInterpolatorFactory<T>
-
- Type Parameters:
T
-
- All Implemented Interfaces:
InterpolatorFactory<T,KNearestNeighborSearch<T>>
public class InverseDistanceWeightingInterpolatorFactory<T extends RealType<T>> extends java.lang.Object implements InterpolatorFactory<T,KNearestNeighborSearch<T>>
Factory forInverseDistanceWeightingInterpolator
instances that work on aKNearestNeighborSearch
.- Author:
- Tobias Pietzsch, Stephan Preibisch
-
-
Constructor Summary
Constructors Constructor Description InverseDistanceWeightingInterpolatorFactory()
InverseDistanceWeightingInterpolatorFactory(double p)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InverseDistanceWeightingInterpolator<T>
create(KNearestNeighborSearch<T> search)
Creates a newInverseDistanceWeightingInterpolator
using a copy of the passedKNearestNeighborSearch
.InverseDistanceWeightingInterpolator<T>
create(KNearestNeighborSearch<T> search, RealInterval interval)
Creates a newInverseDistanceWeightingInterpolator
using a copy of the passedKNearestNeighborSearch
.
-
-
-
Method Detail
-
create
public InverseDistanceWeightingInterpolator<T> create(KNearestNeighborSearch<T> search)
Creates a newInverseDistanceWeightingInterpolator
using a copy of the passedKNearestNeighborSearch
.- Specified by:
create
in interfaceInterpolatorFactory<T extends RealType<T>,KNearestNeighborSearch<T extends RealType<T>>>
-
create
public InverseDistanceWeightingInterpolator<T> create(KNearestNeighborSearch<T> search, RealInterval interval)
Creates a new
InverseDistanceWeightingInterpolator
using a copy of the passedKNearestNeighborSearch
.For now, ignore the
RealInterval
and returncreate(KNearestNeighborSearch)
.- Specified by:
create
in interfaceInterpolatorFactory<T extends RealType<T>,KNearestNeighborSearch<T extends RealType<T>>>
-
-