Package boofcv.factory.feature.associate
Class ConfigAssociate
java.lang.Object
boofcv.factory.feature.associate.ConfigAssociate
- All Implemented Interfaces:
Configuration
,Serializable
Configuration for associating using descriptors only
- See Also:
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionSpecifies the maximum distance allowed between associated pixels.The association algorithm used. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.copy()
setTo
(ConfigAssociate 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
-
type
The association algorithm used. Not always used. -
greedy
-
nearestNeighbor
-
maximumDistancePixels
Specifies the maximum distance allowed between associated pixels. This is only used when creating an association algorithm that supports 2D information.
If an absolute value is specified then it's in units of pixels. If relative then it is a fraction of max(imageWidth, imageHeight)
-
-
Constructor Details
-
ConfigAssociate
public ConfigAssociate()
-
-
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
-