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
Modifier and TypeFieldDescriptiondouble
Maximum fraction a single element can have in descriptor.int
Number of histogram bins.double
Conversion of sigma to pixels.double
Sigma for Gaussian weighting function is set to this value * region width.int
Width of grid in subregions.int
Width of sub-region in samples. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks 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, wait
Methods 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: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
-