- java.lang.Object
-
- org.scijava.ops.image.convert.copy.CopyComplexTypes
-
-
Constructor Summary
Constructors Constructor Description CopyComplexTypes()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <I extends ComplexType<I>,O extends ComplexType<O>>
voidcopyComplexTypes(I input, O output)Copies the real and imaginary components frominputtooutput.static <I extends ComplexType<I>,O extends ComplexType<O>,RAII extends RandomAccessibleInterval<I>,RAIO extends RandomAccessibleInterval<O>>
voidcopyRAIs(RAII input, RAIO output)Copies the real and imaginary components from each element ofinputto the corresponding element ofoutput.
-
-
-
Method Detail
-
copyComplexTypes
public static <I extends ComplexType<I>,O extends ComplexType<O>> void copyComplexTypes(I input, O output)
Copies the real and imaginary components frominputtooutput.- Parameters:
input- the inputoutput- the preallocated output- Implementation Note:
- op names='convert.copy, engine.copy', priority='-10000', type=Computer
-
copyRAIs
public static <I extends ComplexType<I>,O extends ComplexType<O>,RAII extends RandomAccessibleInterval<I>,RAIO extends RandomAccessibleInterval<O>> void copyRAIs(RAII input, RAIO output)
Copies the real and imaginary components from each element ofinputto the corresponding element ofoutput.- Parameters:
input- the inputoutput- the preallocated output- Implementation Note:
- op names='convert.copy, engine.copy', priority='-10000', type=Computer
-
-