diff options
| -rwxr-xr-x[-rw-r--r--] | tracker-pt/point_tracker.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/tracker-pt/point_tracker.cpp b/tracker-pt/point_tracker.cpp index 599ce2d3..493f311c 100644..100755 --- a/tracker-pt/point_tracker.cpp +++ b/tracker-pt/point_tracker.cpp @@ -194,6 +194,7 @@ int PointTracker::POSIT(const PointModel& model, const PointOrder& order_, float          float IJ0 = I0.dot(J0);          float JJ0 = J0.dot(J0);          float rho, theta; +        // CAVEAT don't change to comparison with a small epsilon, e.g. 1e-4. -sh 20160423          if (JJ0 == II0) {              rho = std::sqrt(std::abs(2*IJ0));              theta = -PI/4; | 
