Package boofcv.factory.geo
Class ConfigLMedS
java.lang.Object
boofcv.factory.geo.ConfigLMedS
- All Implemented Interfaces:
Configuration
,Serializable
public class ConfigLMedS extends Object implements Configuration
Standard configuration parameters for
LeastMedianOfSquares
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description double
errorFraction
The error fraction it's optimized againstlong
randSeed
Random seed that's used internallyint
totalCycles
Number of cycles it will perform when minimizing the median error. -
Constructor Summary
Constructors Constructor Description ConfigLMedS()
ConfigLMedS(long randSeed, int totalCycles)
-
Method Summary
Modifier and Type Method Description void
checkValidity()
Checks to see if the configuration is valid.ConfigLMedS
setTo(ConfigLMedS 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
-
randSeed
public long randSeedRandom seed that's used internally -
totalCycles
public int totalCyclesNumber of cycles it will perform when minimizing the median error. TUNE THIS -
errorFraction
public double errorFractionThe error fraction it's optimized against
-
-
Constructor Details
-
ConfigLMedS
public ConfigLMedS() -
ConfigLMedS
public ConfigLMedS(long randSeed, int totalCycles)
-
-
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
-