Class ConfigParamPolar
java.lang.Object
boofcv.factory.feature.detect.line.ConfigParamPolar
- All Implemented Interfaces:
Configuration
,Serializable
parameters for
HoughParametersPolar
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionint
Number of bins along angle axis.double
Resolution of line range in pixels. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.setTo
(ConfigParamPolar 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
-
resolutionRange
public double resolutionRangeResolution of line range in pixels. Try 2 -
numBinsAngle
public int numBinsAngleNumber of bins along angle axis. Resolution = 180/binAngle (degrees)
-
-
Constructor Details
-
ConfigParamPolar
public ConfigParamPolar(double resolutionRange, int numBinsAngle) -
ConfigParamPolar
public ConfigParamPolar()
-
-
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
-