Module org.scijava.ops.image
Class IFFTMethodsOpC<C extends ComplexType<C>,T extends RealType<T>>
- java.lang.Object
-
- org.scijava.ops.image.filter.ifft.IFFTMethodsOpC<C,T>
-
- Type Parameters:
C-T-
- All Implemented Interfaces:
BiConsumer<RandomAccessibleInterval<C>,RandomAccessibleInterval<T>>,Computers.Arity1<RandomAccessibleInterval<C>,RandomAccessibleInterval<T>>
public class IFFTMethodsOpC<C extends ComplexType<C>,T extends RealType<T>> extends Object implements Computers.Arity1<RandomAccessibleInterval<C>,RandomAccessibleInterval<T>>
Inverse FFT computer that operates on an RAI and wraps FFTMethods. The input and output size must conform to supported FFT size. UseComputeFFTSizeto calculate the supported FFT size.- Author:
- Brian Northan
- Implementation Note:
- op names='filter.ifft'
-
-
Constructor Summary
Constructors Constructor Description IFFTMethodsOpC()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcompute(RandomAccessibleInterval<C> input, RandomAccessibleInterval<T> output)TODObooleanconforms(RandomAccessibleInterval<C> input)Make sure that the input size conforms to a supported FFT size.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.function.BiConsumer
andThen
-
Methods inherited from interface org.scijava.function.Computers.Arity1
accept
-
-
-
-
Method Detail
-
compute
public void compute(RandomAccessibleInterval<C> input, RandomAccessibleInterval<T> output)
TODO- Specified by:
computein interfaceComputers.Arity1<C extends ComplexType<C>,T extends RealType<T>>- Parameters:
input-output-
-
conforms
public boolean conforms(RandomAccessibleInterval<C> input)
Make sure that the input size conforms to a supported FFT size.
-
-