Package boofcv.abst.scene
Class ConfigFeatureToSceneRecognition
java.lang.Object
boofcv.abst.scene.ConfigFeatureToSceneRecognition
- All Implemented Interfaces:
Configuration
,Serializable
Generic configuration for using implementations of
FeatureSceneRecognition
inside
of SceneRecognition
.- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
Which type of recognition algorithm to use -
Field Summary
Modifier and TypeFieldDescriptionfinal ConfigDetectDescribe
Image feature detectorint
Images are rescaled so that they have at most this number of pixels.Configuration forRecognitionNearestNeighborInvertedFile
Configuration forRecognitionVocabularyTreeNister2006
Specifies which recognition algorithm to use -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.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
-
maxImagePixels
public int maxImagePixelsImages are rescaled so that they have at most this number of pixels. To turn off set to a value ≤ 0. Many of feature related tuning parameters have an implicit assumption about image resolution. Processing a much higher resolution image could require changing many other parameters for optimal performance. -
typeRecognize
Specifies which recognition algorithm to use -
features
Image feature detector -
recognizeNister2006
Configuration forRecognitionVocabularyTreeNister2006
-
recognizeNeighbor
Configuration forRecognitionNearestNeighborInvertedFile
-
-
Constructor Details
-
ConfigFeatureToSceneRecognition
public ConfigFeatureToSceneRecognition()
-
-
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
-