public class GradientSobel_Naive
extends java.lang.Object
This implementation of the sobel edge dector is implements it in such as way that the code can be easily read and verified for correctness, however it is much slower than it needs to be. The intended purpose of this class is to compare it against others.
This code is being saved to avoid repeating past work and make it easier to understand other implementations.
GradientSobel| Constructor and Description |
|---|
GradientSobel_Naive() |
| Modifier and Type | Method and Description |
|---|---|
static void |
process(GrayF32 orig,
GrayF32 derivX,
GrayF32 derivY)
Computes the derivative of 'orig' along the x and y axes
|
static void |
process(GrayI orig,
GrayI derivX,
GrayI derivY)
Computes the derivative of 'orig' along the x and y axes
|