Module org.scijava.ops.image
Package org.scijava.ops.image.filter.pad
Class PadInputFFT<T extends ComplexType<T>,I extends RandomAccessibleInterval<T>,O extends RandomAccessibleInterval<T>>
- java.lang.Object
-
- org.scijava.ops.image.filter.pad.PadInputFFT<T,I,O>
-
- Type Parameters:
T-I-O-
- All Implemented Interfaces:
Functions.Arity4<I,Dimensions,Boolean,OutOfBoundsFactory<T,RandomAccessibleInterval<T>>,O>
- Direct Known Subclasses:
DefaultPadInputFFT,PadInputFFTMethods
public abstract class PadInputFFT<T extends ComplexType<T>,I extends RandomAccessibleInterval<T>,O extends RandomAccessibleInterval<T>> extends Object implements Functions.Arity4<I,Dimensions,Boolean,OutOfBoundsFactory<T,RandomAccessibleInterval<T>>,O>
Abstract Op used to pad the image by extending the borders optionally using an "fftSize" op to make the final image size compatible with an FFT library.- Author:
- Brian Northan
-
-
Constructor Summary
Constructors Constructor Description PadInputFFT()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Oapply(I input, Dimensions paddedDimensions, Boolean fast, OutOfBoundsFactory<T,RandomAccessibleInterval<T>> obf)TODOprotected Function<Dimensions,long[][]>getFFTSizeOp(boolean fast)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.scijava.function.Functions.Arity4
andThen
-
-
-
-
Method Detail
-
apply
public O apply(I input, Dimensions paddedDimensions, Boolean fast, OutOfBoundsFactory<T,RandomAccessibleInterval<T>> obf)
TODO- Specified by:
applyin interfaceFunctions.Arity4<I extends RandomAccessibleInterval<T>,Dimensions,Boolean,OutOfBoundsFactory<T extends ComplexType<T>,RandomAccessibleInterval<T extends ComplexType<T>>>,O extends RandomAccessibleInterval<T>>- Parameters:
input- function argument 1paddedDimensions- function argument 2fast- function argument 3obf- function argument 4- Returns:
-
getFFTSizeOp
protected Function<Dimensions,long[][]> getFFTSizeOp(boolean fast)
-
-