Package boofcv.alg.geo.bundle.jacobians
Interface JacobianSo3
- All Known Implementing Classes:
JacobianSo3Numerical,JacobianSo3Quaternions,JacobianSo3Rodrigues
public interface JacobianSo3
Generalized computation for jacobian of 3D rotation matrix
-
Method Summary
Modifier and TypeMethodDescriptionintvoidgetParameters(DMatrixRMaj R, double[] parameters, int offset) Converts the 3x3 rotation matrix into encoded parametersgetPartial(int param) Creates a new instance which is equivalent to 'this'.voidsetParameters(double[] parameters, int offset)
-
Method Details
-
getParameters
Converts the 3x3 rotation matrix into encoded parameters- Parameters:
R- 3x3 (Input) rotation matrixparameters- (Output) storage for encoded rotation matrixoffset- index in parameters array
-
setParameters
void setParameters(double[] parameters, int offset) -
getParameterLength
int getParameterLength() -
getRotationMatrix
DMatrixRMaj getRotationMatrix() -
getPartial
-
newInstance
JacobianSo3 newInstance()Creates a new instance which is equivalent to 'this'. State is not copied.
-