boofcv.alg.feature.detect.intensity
Interface HarrisCornerIntensity<T extends ImageGray>
-
- All Superinterfaces:
- FeatureIntensity<T>, GradientCornerIntensity<T>
- All Known Implementing Classes:
- ImplHarrisCorner_F32, ImplHarrisCorner_S16, ImplHarrisCornerWeighted_F32, ImplHarrisCornerWeighted_S16
public interface HarrisCornerIntensity<T extends ImageGray> extends GradientCornerIntensity<T>
The Harris corner detector [1] is similar to the
ShiTomasiCornerIntensitybut avoids computing the eigenvalues directly. In theory this should be more computationally efficient.corner = det(D) + k*trace(D)2
where D is the deformation matrix (seeGradientCornerIntensity), and k is a tunable scalar.k typically has a small value, for example 0.04.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description floatgetKappa()Returns the value of the tuning parameter.voidsetKappa(float kappa)Sets the tuning parameter.-
Methods inherited from interface boofcv.alg.feature.detect.intensity.GradientCornerIntensity
process
-
Methods inherited from interface boofcv.alg.feature.detect.intensity.FeatureIntensity
getIgnoreBorder, getRadius
-
-
DataMelt 3.0 © DataMelt by jWork.ORG