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
Modifier and TypeFieldDescriptionint
Minimum number of pixels around the circle that are required to be a corner.int
How different pixels need to be considered part of a corner. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks 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, wait
Methods 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: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
-