Welcome to CameraCalibrator
--------------------------------------
Parallel tracking and mapping for Small AR workspaces
Copyright (C) Isis Innovation Limited 2008
// Inlier/outlier accounting, only really works for cut-off estimators such as Tukey.
if(dWeight == 0.0)
{
if(bMarkOutliers)
TD.Point.nMEstimatorOutlierCount++;
continue;
}
else
if(bMarkOutliers)
TD.Point.nMEstimatorInlierCount++;
Matrix<2,6> &m26Jac = TD.m26Jacobian;
wls.add_mJ(v2[0], TD.dSqrtInvNoise * m26Jac[0], dWeight); // These two lines are currently
wls.add_mJ(v2[1], TD.dSqrtInvNoise * m26Jac[1], dWeight); // the slowest bit of poseits
}