Class ConfigHarrisCorner
java.lang.Object
boofcv.abst.feature.detect.interest.ConfigHarrisCorner
- All Implemented Interfaces:
Configuration
,Serializable
Configuration for
Harris
corner.- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionConfigHarrisCorner
(boolean weighted, int radius) ConfigHarrisCorner
(boolean weighted, int radius, double kappa) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.copy()
setTo
(ConfigHarrisCorner src) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface boofcv.struct.Configuration
serializeActiveFields, serializeInitialize
-
Field Details
-
weighted
public boolean weightedIf true a Gaussian kernel will be used. False runs much faster but selects a different location. Application specific which one is preferred. False is more commonly used. -
radius
public int radiusRadius of the kernel. -
kappa
public double kappaTuning parameter, typically a small number around 0.04
-
-
Constructor Details
-
ConfigHarrisCorner
public ConfigHarrisCorner() -
ConfigHarrisCorner
public ConfigHarrisCorner(boolean weighted, int radius, double kappa) -
ConfigHarrisCorner
public ConfigHarrisCorner(boolean weighted, int radius)
-
-
Method Details
-
checkValidity
public void checkValidity()Description copied from interface:Configuration
Checks to see if the configuration is valid. If it is invalid, throw an exception explaining what is incorrect.- Specified by:
checkValidity
in interfaceConfiguration
-
setTo
-
copy
-