public class MedianCornerIntensity
extends java.lang.Object
Corner detector based on median filter. First a median filter is run on the input image then the difference between the input image and the median image is computed. Corners are points of high intensity in the difference image.
| Constructor and Description |
|---|
MedianCornerIntensity() |
| Modifier and Type | Method and Description |
|---|---|
static void |
process(boofcv.struct.image.GrayF32 intensity,
boofcv.struct.image.GrayF32 originalImage,
boofcv.struct.image.GrayF32 medianImage) |
static void |
process(boofcv.struct.image.GrayF32 intensity,
boofcv.struct.image.GrayU8 originalImage,
boofcv.struct.image.GrayU8 medianImage) |
public static void process(boofcv.struct.image.GrayF32 intensity,
boofcv.struct.image.GrayF32 originalImage,
boofcv.struct.image.GrayF32 medianImage)
public static void process(boofcv.struct.image.GrayF32 intensity,
boofcv.struct.image.GrayU8 originalImage,
boofcv.struct.image.GrayU8 medianImage)