Skip to content

Commit b0fb6a3

Browse files
committed
renaming key variable
1 parent b00046c commit b0fb6a3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

gtsam/slam/EssentialMatrixFactor.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -313,17 +313,17 @@ class EssentialMatrixFactor4
313313
public:
314314
/**
315315
* Constructor
316-
* @param essentialMatrixKey Essential Matrix variable key
317-
* @param calibrationKey Calibration variable key
316+
* @param keyE Essential Matrix variable key
317+
* @param keyK Calibration variable key
318318
* @param pA point in first camera, in pixel coordinates
319319
* @param pB point in second camera, in pixel coordinates
320320
* @param model noise model is about dot product in ideal, homogeneous
321321
* coordinates
322322
*/
323-
EssentialMatrixFactor4(Key essentialMatrixKey, Key calibrationKey,
323+
EssentialMatrixFactor4(Key keyE, Key keyK,
324324
const Point2& pA, const Point2& pB,
325325
const SharedNoiseModel& model)
326-
: Base(model, essentialMatrixKey, calibrationKey), pA_(pA), pB_(pB) {}
326+
: Base(model, keyE, keyK), pA_(pA), pB_(pB) {}
327327

328328
/// @return a deep copy of this factor
329329
gtsam::NonlinearFactor::shared_ptr clone() const override {
@@ -345,8 +345,8 @@ class EssentialMatrixFactor4
345345
/**
346346
* @brief Calculate the algebraic epipolar error p' (K^-1)' E K p.
347347
*
348-
* @param E essential matrix for key essentialMatrixKey
349-
* @param K calibration (common for both images) for key calibrationKey
348+
* @param E essential matrix for key keyE
349+
* @param K calibration (common for both images) for key keyK
350350
* @param H1 optional jacobian in E
351351
* @param H2 optional jacobian in K
352352
* @return * Vector

0 commit comments

Comments
 (0)