Package boofcv.abst.feature.describe
Class ConfigSiftDescribe
java.lang.Object
boofcv.abst.feature.describe.ConfigSiftDescribe
- All Implemented Interfaces:
Configuration,Serializable
Configuration for
DescribePointSift- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptiondoubleMaximum fraction a single element can have in descriptor.intNumber of histogram bins.doubleConversion of sigma to pixels.doubleSigma for Gaussian weighting function is set to this value * region width.intWidth of grid in subregions.intWidth of sub-region in samples. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidChecks to see if the configuration is valid.setTo(ConfigSiftDescribe 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
-
widthSubregion
public int widthSubregionWidth of sub-region in samples. -
widthGrid
public int widthGridWidth of grid in subregions. -
numHistogramBins
public int numHistogramBinsNumber of histogram bins. -
sigmaToPixels
public double sigmaToPixelsConversion of sigma to pixels. Used to scale the descriptor sample region's width. -
weightingSigmaFraction
public double weightingSigmaFractionSigma for Gaussian weighting function is set to this value * region width. -
maxDescriptorElementValue
public double maxDescriptorElementValueMaximum fraction a single element can have in descriptor. Helps with non-affine changes in lighting. See paper.
-
-
Constructor Details
-
ConfigSiftDescribe
public ConfigSiftDescribe()
-
-
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
-