@Deprecated public final class GaussFloat extends AbstractGauss<FloatType>
Modifier and Type | Field and Description |
---|---|
protected boolean |
isArray
Deprecated.
|
Constructor and Description |
---|
GaussFloat(double[] sigma,
Img<FloatType> input)
Deprecated.
Computes a Gaussian convolution with float precision on an entire
Img using the OutOfBoundsMirrorFactory with single
boundary |
GaussFloat(double[] sigma,
Img<FloatType> input,
OutOfBoundsFactory<FloatType,Img<FloatType>> outOfBounds)
Deprecated.
Computes a Gaussian convolution with float precision on an entire
Img |
GaussFloat(double[] sigma,
RandomAccessible<FloatType> input,
Interval interval,
ImgFactory<FloatType> factory)
Deprecated.
Computes a Gaussian convolution with float precision on a
RandomAccessible of FloatType in a certain
Interval and returns an Img defined by the
ImgFactory containing the result |
GaussFloat(double[] sigma,
RandomAccessible<FloatType> input,
Interval interval,
RandomAccessible<FloatType> output,
Localizable outputOffset,
ImgFactory<FloatType> factory)
Deprecated.
Computes a Gaussian convolution with float precision on a
RandomAccessible of FloatType in a certain
Interval and writes it into a given RandomAccessible at a
specific Point |
Modifier and Type | Method and Description |
---|---|
static Img<FloatType> |
gauss(double[] sigma,
Img<FloatType> input)
Deprecated.
|
static Img<FloatType> |
gauss(double[] sigma,
Img<FloatType> input,
OutOfBoundsFactory<FloatType,Img<FloatType>> outOfBounds)
Deprecated.
|
static Img<FloatType> |
gauss(double[] sigma,
RandomAccessible<FloatType> input,
Interval interval,
ImgFactory<FloatType> factory)
Deprecated.
|
static void |
gauss(double[] sigma,
RandomAccessible<FloatType> input,
Interval interval,
RandomAccessible<FloatType> output,
Localizable outputOffset,
ImgFactory<FloatType> factory)
Deprecated.
|
protected Img<FloatType> |
getProcessingLine(long sizeProcessLine)
Deprecated.
|
protected boolean |
isArray()
Deprecated.
|
protected void |
processLine(SamplingLineIterator<FloatType> input,
double[] kernel)
Deprecated.
Compute the current line.
|
call, computeKernel, createInputLineSampler, createOutputLineWriter, getFactory, getInput, getInputInterval, getKernel, getNumThreads, getOutput, getOutputOffset, getProcessingType, getRange, getResult, getSigma, getTemporaryImgSize, getTmp1, getTmp2, numDimensions, setNumThreads, type, updateInputLineSampler, updateOutputLineWriter, writeLine
public GaussFloat(double[] sigma, RandomAccessible<FloatType> input, Interval interval, ImgFactory<FloatType> factory)
RandomAccessible
of FloatType
in a certain
Interval
and returns an Img
defined by the
ImgFactory
containing the resultsigma
- - the sigma for the convolutioninput
- - the RandomAccessible
to work oninterval
- - the area that is convolvedfactory
- - the ImgFactory
that defines the temporary and output
images to be usedpublic GaussFloat(double[] sigma, RandomAccessible<FloatType> input, Interval interval, RandomAccessible<FloatType> output, Localizable outputOffset, ImgFactory<FloatType> factory)
RandomAccessible
of FloatType
in a certain
Interval
and writes it into a given RandomAccessible
at a
specific Pointsigma
- - the sigma for the convolutioninput
- - the RandomAccessible
to work oninterval
- - the area that is convolvedoutput
- - the RandomAccessible
where the output will be
written tooutputOffset
- - the offset that corresponds to the first pixel in output
RandomAccessible
factory
- - the ImgFactory
for creating temporary imagespublic GaussFloat(double[] sigma, Img<FloatType> input)
Img
using the OutOfBoundsMirrorFactory
with single
boundarysigma
- - the sigma for the convolutioninput
- - the input Img
public GaussFloat(double[] sigma, Img<FloatType> input, OutOfBoundsFactory<FloatType,Img<FloatType>> outOfBounds)
Img
sigma
- - the sigma for the convolutioninput
- - the input Img
outOfBounds
- - the OutOfBoundsFactory
to usepublic static Img<FloatType> gauss(double[] sigma, Img<FloatType> input, OutOfBoundsFactory<FloatType,Img<FloatType>> outOfBounds)
public static Img<FloatType> gauss(double[] sigma, RandomAccessible<FloatType> input, Interval interval, ImgFactory<FloatType> factory)
public static void gauss(double[] sigma, RandomAccessible<FloatType> input, Interval interval, RandomAccessible<FloatType> output, Localizable outputOffset, ImgFactory<FloatType> factory)
protected Img<FloatType> getProcessingLine(long sizeProcessLine)
getProcessingLine
in class AbstractGauss<FloatType>
protected void processLine(SamplingLineIterator<FloatType> input, double[] kernel)
Iterator
) as it is potentially an expensive operation (e.g. a
Converter
might be involved or we are computing on a rendered
input)processLine
in class AbstractGauss<FloatType>
input
- - the Iterator
/Sampler
over the current input
line.protected boolean isArray()
Copyright © 2015–2022 ImgLib2. All rights reserved.