Module org.scijava.ops.image
Class SobelRAI<T extends RealType<T>>
- java.lang.Object
-
- org.scijava.ops.image.filter.sobel.SobelRAI<T>
-
- Type Parameters:
T- type of input
- All Implemented Interfaces:
BiConsumer<RandomAccessibleInterval<T>,RandomAccessibleInterval<T>>,Computers.Arity1<RandomAccessibleInterval<T>,RandomAccessibleInterval<T>>
public class SobelRAI<T extends RealType<T>> extends Object implements Computers.Arity1<RandomAccessibleInterval<T>,RandomAccessibleInterval<T>>
Sobel filter implementation using separated sobel kernel.- Author:
- Eike Heinz, University of Konstanz
- Implementation Note:
- op names='filter.sobel'
-
-
Constructor Summary
Constructors Constructor Description SobelRAI()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcompute(RandomAccessibleInterval<T> input, RandomAccessibleInterval<T> output)TODO-
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<T> input, RandomAccessibleInterval<T> output)
TODO- Specified by:
computein interfaceComputers.Arity1<RandomAccessibleInterval<T extends RealType<T>>,RandomAccessibleInterval<T extends RealType<T>>>- Parameters:
input-output-
-
-