| Package | Description |
|---|---|
| boofcv.alg.feature.detect.intensity | |
| boofcv.alg.feature.detect.intensity.impl |
| Modifier and Type | Interface and Description |
|---|---|
interface |
GradientCornerIntensity<T extends ImageSingleBand>
Several different types of corner detectors [1,2] all share the same initial processing steps.
|
interface |
HarrisCornerIntensity<T extends ImageSingleBand>
The Harris corner detector [1] is similar to the
ShiTomasiCornerIntensity but avoids computing the eigenvalues
directly. |
interface |
ShiTomasiCornerIntensity<T extends ImageSingleBand>
This corner detector is designed to select the best features for tracking inside of a Kanade-Lucas-Tomasi (KLT)
feature tracker [1].
|
| Modifier and Type | Class and Description |
|---|---|
class |
FastCornerIntensity<T extends ImageSingleBand>
Generic interface for fast corner detection algorithms.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ImplFastIntensity10<T extends ImageSingleBand>
Contains logic for detecting fast corners.
|
class |
ImplFastIntensity11<T extends ImageSingleBand>
Contains logic for detecting fast corners.
|
class |
ImplFastIntensity12<T extends ImageSingleBand>
Contains logic for detecting fast corners.
|
class |
ImplFastIntensity9<T extends ImageSingleBand>
Contains logic for detecting fast corners.
|
class |
ImplHarrisCorner_F32
Implementation of
HarrisCornerIntensity based off of ImplSsdCorner_F32. |
class |
ImplHarrisCorner_S16
Implementation of
HarrisCornerIntensity based off of ImplSsdCorner_S16. |
class |
ImplHarrisCornerWeighted_F32
Implementation of
HarrisCornerIntensity
that samples pixels using a Gaussian distribution and is based off of ImplSsdCornerWeighted_F32. |
class |
ImplHarrisCornerWeighted_S16
Implementation of
HarrisCornerIntensity
that samples pixels using a Gaussian distribution and is based off of ImplSsdCornerWeighted_F32. |
class |
ImplShiTomasiCorner_F32
Implementation of
ShiTomasiCornerIntensity based off of ImplSsdCorner_F32. |
class |
ImplShiTomasiCorner_S16
Implementation of
ShiTomasiCornerIntensity based off of ImplSsdCornerNaive. |
class |
ImplShiTomasiCornerWeighted_F32
Implementation of
ShiTomasiCornerIntensity
that samples pixels using a Gaussian distribution based off of ImplSsdCornerWeighted_F32. |
class |
ImplShiTomasiCornerWeighted_S16
Implementation of
ShiTomasiCornerIntensity
that samples pixels using a Gaussian distribution based off of ImplSsdCornerWeighted_F32. |
class |
ImplSsdCorner_F32
Implementation of
ImplSsdCornerBase for ImageFloat32. |
class |
ImplSsdCorner_S16
Implementation of
ImplSsdCornerBase for ImageSInt16. |
class |
ImplSsdCornerBase<D extends ImageSingleBand,D2 extends ImageSingleBand>
Several corner detector algorithms work by computing a symmetric matrix whose elements are composed of the convolution
of the image's gradient squared.
|
class |
ImplSsdCornerNaive<T extends ImageSingleBand>
Naive implementation of
ShiTomasiCornerIntensity which performs computations in a straight
forward but inefficient manor. |
class |
ImplSsdCornerWeighted_F32 |
class |
ImplSsdCornerWeighted_S16 |
Copyright © 2013. All Rights Reserved.