| Interface | Description |
|---|---|
| FeatureIntensity<T extends boofcv.struct.image.ImageGray> |
Base interface for classes which extract intensity images for image feature detection.
|
| GradientCornerIntensity<T extends boofcv.struct.image.ImageGray> |
Several different types of corner detectors [1,2] all share the same initial processing steps.
|
| HarrisCornerIntensity<T extends boofcv.struct.image.ImageGray> |
The Harris corner detector [1] is similar to the
ShiTomasiCornerIntensity but avoids computing the eigenvalues
directly. |
| ShiTomasiCornerIntensity<T extends boofcv.struct.image.ImageGray> |
This corner detector is designed to select the best features for tracking inside of a Kanade-Lucas-Tomasi (KLT)
feature tracker [1].
|
| Class | Description |
|---|---|
| FastCornerIntensity<T extends boofcv.struct.image.ImageGray> |
Generic interface for fast corner detection algorithms.
|
| GIntegralImageFeatureIntensity | |
| HessianBlobIntensity |
Detects "blob" intensity using the image's second derivative.
|
| IntegralImageFeatureIntensity |
Routines for computing the intensity of the fast hessian features in an image.
|
| KitRosCornerIntensity |
Implementation of the Kitchen and Rosenfeld corner detector as described in [1].
|
| MedianCornerIntensity |
Corner detector based on median filter.
|
| Enum | Description |
|---|---|
| HessianBlobIntensity.Type |
Different types of Hessian blob detectors
|