Package boofcv.factory.geo
Class ConfigLMedS
java.lang.Object
boofcv.factory.geo.ConfigLMedS
- All Implemented Interfaces:
Configuration
,Serializable
Standard configuration parameters for
LeastMedianOfSquares
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptiondouble
The error fraction it's optimized againstlong
Random seed that's used internallyint
Number of cycles it will perform when minimizing the median error. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.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
-