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
Modifier and TypeFieldDescriptiondouble
How to convert the radius to the internal canonical scale.int
Radius of the region being considered in terms of samples.double
How often the image is sampled.int
How wide of a kernel should be used to sample.double
Sigma for weighting. -
Constructor Summary
ConstructorDescriptionConfigAverageIntegral
(int radius, double samplePeriod, int sampleWidth, double weightSigma) -
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
-
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: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
-