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
FieldsModifier and TypeFieldDescriptiondoubleThe error fraction it's optimized againstlongRandom seed that's used internallyintNumber of cycles it will perform when minimizing the median error. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidChecks 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, waitMethods 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:ConfigurationChecks to see if the configuration is valid. If it is invalid, throw an exception explaining what is incorrect.- Specified by:
checkValidityin interfaceConfiguration
-