Module org.scijava.ops.image
Class AbstractVertexInterpolator
- java.lang.Object
-
- org.scijava.ops.image.geom.geom3d.AbstractVertexInterpolator
-
- All Implemented Interfaces:
VertexInterpolator
- Direct Known Subclasses:
BitTypeVertexInterpolator,DefaultVertexInterpolator
public abstract class AbstractVertexInterpolator extends Object implements VertexInterpolator
This is theAbstractVertexInterpolator. A vertex interpolator computes the real coordinates based on the pixel intensities.- Author:
- Tim-Oliver Buchholz (University of Konstanz)
-
-
Constructor Summary
Constructors Constructor Description AbstractVertexInterpolator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]getOutput()voidsetPoint1(int[] p)voidsetPoint2(int[] p)voidsetValue1(double d)voidsetValue2(double d)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.scijava.ops.image.geom.geom3d.VertexInterpolator
run, setIsoLevel
-
-
-
-
Method Detail
-
setPoint1
public void setPoint1(int[] p)
- Specified by:
setPoint1in interfaceVertexInterpolator
-
setPoint2
public void setPoint2(int[] p)
- Specified by:
setPoint2in interfaceVertexInterpolator
-
setValue1
public void setValue1(double d)
- Specified by:
setValue1in interfaceVertexInterpolator
-
setValue2
public void setValue2(double d)
- Specified by:
setValue2in interfaceVertexInterpolator
-
getOutput
public double[] getOutput()
- Specified by:
getOutputin interfaceVertexInterpolator
-
-