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.ImageFloat32 intensity,
boofcv.struct.image.ImageFloat32 originalImage,
boofcv.struct.image.ImageFloat32 medianImage) |
static void |
process(boofcv.struct.image.ImageFloat32 intensity,
boofcv.struct.image.ImageUInt8 originalImage,
boofcv.struct.image.ImageUInt8 medianImage) |
public static void process(boofcv.struct.image.ImageFloat32 intensity,
boofcv.struct.image.ImageFloat32 originalImage,
boofcv.struct.image.ImageFloat32 medianImage)
public static void process(boofcv.struct.image.ImageFloat32 intensity,
boofcv.struct.image.ImageUInt8 originalImage,
boofcv.struct.image.ImageUInt8 medianImage)