Package boofcv.factory.geo
Class ConfigPnP
java.lang.Object
boofcv.factory.geo.ConfigPnP
- All Implemented Interfaces:
Configuration
,Serializable
Configuration parameters for solving the PnP problem
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionint
Number of iterations for EPNP.int
How many points should be used to resolve ambiguity in the solutions?Which algorithm should it use. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.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
-
which
Which algorithm should it use. Only use essential matrix ones. -
numResolve
public int numResolveHow many points should be used to resolve ambiguity in the solutions? -
epnpIterations
public int epnpIterationsNumber of iterations for EPNP. Ignored by everything else
-
-
Constructor Details
-
ConfigPnP
public ConfigPnP()
-
-
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
-