Package boofcv.factory.fiducial
Class ConfigAztecCode
java.lang.Object
boofcv.factory.fiducial.ConfigAztecCode
- All Implemented Interfaces:
Configuration
,Serializable
Configuration for
AztecCodePreciseDetector
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionboolean
If true it will consider transposed markers, i.e.int
Maximum number of incorrect readings in orientation pattern that are accepted.Configuration for polygon detector that's used to find position patternsSpecifies how images are thresholded and converted into a binary format -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.static ConfigAztecCode
fast()
Default configuration for a QR Code detector which is optimized for speedsetTo
(ConfigAztecCode 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
-
threshold
Specifies how images are thresholded and converted into a binary format -
polygon
Configuration for polygon detector that's used to find position patterns -
considerTransposed
public boolean considerTransposedIf true it will consider transposed markers, i.e. mirror image. Set to false if you know your markers are standard compliant and want a modest speed boost. -
maxOrientationError
public int maxOrientationErrorMaximum number of incorrect readings in orientation pattern that are accepted. max 12 for compact. 16 for full-range. Full-range includes reference grid.
-
-
Constructor Details
-
ConfigAztecCode
public ConfigAztecCode()
-
-
Method Details
-
fast
Default configuration for a QR Code detector which is optimized for speed -
setTo
-
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
-