public class ImplBinaryNaiveOps
extends java.lang.Object
BinaryImageOps| Constructor and Description |
|---|
ImplBinaryNaiveOps() |
| 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 boolean |
getF(GrayU8 image,
int x,
int y)
If a point is inside the image true is returned if its value is not zero, otherwise false is returned.
|
static boolean |
getT(GrayU8 image,
int x,
int y)
If a point is inside the image true is returned if its value is not zero, otherwise true is returned.
|
static void |
removePointNoise(GrayU8 input,
GrayU8 output)
Binary operation which is designed to remove small bits of spurious noise.
|
public static void removePointNoise(GrayU8 input, GrayU8 output)
input - Input image. Not modified.output - If not null, the output image. If null a new image is declared and returned. Modified.public static boolean getT(GrayU8 image, int x, int y)
public static boolean getF(GrayU8 image, int x, int y)