public class GradientSobel_Naive extends 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(ImageFloat32 orig,
ImageFloat32 derivX,
ImageFloat32 derivY)
Computes the derivative of 'orig' along the x and y axes
|
static void |
process(ImageInteger orig,
ImageInteger derivX,
ImageInteger derivY)
Computes the derivative of 'orig' along the x and y axes
|
public static void process(ImageInteger orig, ImageInteger derivX, ImageInteger derivY)
public static void process(ImageFloat32 orig, ImageFloat32 derivX, ImageFloat32 derivY)
Copyright © 2013. All Rights Reserved.