Class ConfigFastCorner
java.lang.Object
boofcv.abst.feature.detect.interest.ConfigFastCorner
- All Implemented Interfaces:
Configuration,Serializable
Configuration for FAST feature detector.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionintMinimum number of pixels around the circle that are required to be a corner.intHow different pixels need to be considered part of a corner. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidChecks to see if the configuration is valid.copy()setTo(ConfigFastCorner src) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface boofcv.struct.Configuration
serializeActiveFields, serializeInitialize
-
Field Details
-
pixelTol
public int pixelTolHow different pixels need to be considered part of a corner. Image dependent. Try 20 to start. -
minContinuous
public int minContinuousMinimum number of pixels around the circle that are required to be a corner. Can be 9 to 12
-
-
Constructor Details
-
ConfigFastCorner
public ConfigFastCorner(int pixelTol, int minContinuous) -
ConfigFastCorner
public ConfigFastCorner()
-
-
Method Details
-
checkValidity
public void checkValidity()Description copied from interface:ConfigurationChecks to see if the configuration is valid. If it is invalid, throw an exception explaining what is incorrect.- Specified by:
checkValidityin interfaceConfiguration
-
setTo
-
copy
-