Package boofcv.factory.geo
Class ConfigSelfCalibPracticalGuess
java.lang.Object
boofcv.factory.geo.ConfigSelfCalibPracticalGuess
- All Implemented Interfaces:
Configuration
,Serializable
public class ConfigSelfCalibPracticalGuess extends Object implements Configuration
Configuration for
SelfCalibrationPraticalGuessAndCheckFocus
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description boolean
fixedFocus
if true the focus is assumed to be the same for the first two imagesint
numberOfSamples
Number of focal length values it will sample for each camera.double
sampleMax
Specifies the lower and upper limit for focal lengths it will consider.double
sampleMin
Specifies the lower and upper limit for focal lengths it will consider. -
Constructor Summary
Constructors Constructor Description ConfigSelfCalibPracticalGuess()
-
Method Summary
Modifier and Type Method Description void
checkValidity()
Checks to see if the configuration is valid.ConfigSelfCalibPracticalGuess
setTo(ConfigSelfCalibPracticalGuess 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
-
sampleMin
public double sampleMinSpecifies the lower and upper limit for focal lengths it will consider. Relative to image shape -
sampleMax
public double sampleMaxSpecifies the lower and upper limit for focal lengths it will consider. Relative to image shape -
numberOfSamples
public int numberOfSamplesNumber of focal length values it will sample for each camera. 200 is better but is slow -
fixedFocus
public boolean fixedFocusif true the focus is assumed to be the same for the first two images
-
-
Constructor Details
-
ConfigSelfCalibPracticalGuess
public ConfigSelfCalibPracticalGuess()
-
-
Method Details
-
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
-
setTo
-