Module org.scijava.ops.image
Package org.scijava.ops.image.filter.fft
Class FFTMethodsOpF<T extends RealType<T>,C extends ComplexType<C>>
- java.lang.Object
-
- org.scijava.ops.image.filter.fft.FFTMethodsOpF<T,C>
-
- Type Parameters:
T- TODO DocumentationC- TODO Documentation
- All Implemented Interfaces:
Functions.Arity4<RandomAccessibleInterval<T>,C,long[],Boolean,RandomAccessibleInterval<C>>
public class FFTMethodsOpF<T extends RealType<T>,C extends ComplexType<C>> extends Object implements Functions.Arity4<RandomAccessibleInterval<T>,C,long[],Boolean,RandomAccessibleInterval<C>>
Function that uses FFTMethods to perform a forward FFT- Author:
- Brian Northan
- Implementation Note:
- op names='filter.fft', priority='100.'
-
-
Constructor Summary
Constructors Constructor Description FFTMethodsOpF()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RandomAccessibleInterval<C>apply(RandomAccessibleInterval<T> input, C fftType, long[] borderSize, Boolean fast)TODO-
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 RandomAccessibleInterval<C> apply(RandomAccessibleInterval<T> input, C fftType, long[] borderSize, Boolean fast)
TODO- Specified by:
applyin interfaceFunctions.Arity4<RandomAccessibleInterval<T extends RealType<T>>,C extends ComplexType<C>,long[],Boolean,RandomAccessibleInterval<C extends ComplexType<C>>>- Parameters:
input-fftType- the complex type of the outputborderSize- the size of border to apply in each dimensionfast- whether to perform a fast FFT; default true- Returns:
- the output
-
-