public class ImplBinaryInnerOps
extends java.lang.Object
Optimized binary operations for the interior of an image only. Allows less bounds checking
DESIGN NOTE: Minimizing logical operations seems to boost performance significantly. Even if this means increasing the number of array accesses. So always summing the neighbors is faster than checking one and then summing
BinaryImageOps| Constructor and Description |
|---|
ImplBinaryInnerOps() |
| Modifier and Type | Method and Description |
|---|---|
static void |
dilate4(GrayU8 input,
GrayU8 output) |
static void |
dilate8(GrayU8 input,
GrayU8 output) |
static void |
edge4(GrayU8 input,
GrayU8 output) |
static void |
edge8(GrayU8 input,
GrayU8 output) |
static void |
erode4(GrayU8 input,
GrayU8 output) |
static void |
erode8(GrayU8 input,
GrayU8 output) |
static void |
removePointNoise(GrayU8 input,
GrayU8 output) |