Package boofcv.abst.feature.orientation
Class ConfigAverageIntegral
java.lang.Object
boofcv.abst.feature.orientation.ConfigAverageIntegral
- All Implemented Interfaces:
ConfigOrientation,Configuration,Serializable
Configuration for
ImplOrientationAverageGradientIntegral.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface boofcv.abst.feature.orientation.ConfigOrientation
ConfigOrientation.Gradient, ConfigOrientation.Integral -
Field Summary
FieldsModifier and TypeFieldDescriptiondoubleHow to convert the radius to the internal canonical scale.intRadius of the region being considered in terms of samples.doubleHow often the image is sampled.intHow wide of a kernel should be used to sample.doubleSigma for weighting. -
Constructor Summary
ConstructorsConstructorDescriptionConfigAverageIntegral(int radius, double samplePeriod, int sampleWidth, double weightSigma) -
Method Summary
Modifier and TypeMethodDescriptionvoidChecks to see if the configuration is valid.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
-
objectRadiusToScale
public double objectRadiusToScaleHow to convert the radius to the internal canonical scale. Can be used to adjust how big or small the region is. -
radius
public int radiusRadius of the region being considered in terms of samples. Typically 6. -
samplePeriod
public double samplePeriodHow often the image is sampled. This number is scaled. Typically 1. -
sampleWidth
public int sampleWidthHow wide of a kernel should be used to sample. Try 6 -
weightSigma
public double weightSigmaSigma for weighting. zero for unweighted. less than zero for automatic. Try -1.
-
-
Constructor Details
-
ConfigAverageIntegral
public ConfigAverageIntegral(int radius, double samplePeriod, int sampleWidth, double weightSigma) -
ConfigAverageIntegral
public ConfigAverageIntegral()
-
-
Method Details
-
setTo
-
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
-