From d130387a7db0b52080905c15ddcebfa22484d0de Mon Sep 17 00:00:00 2001 From: roderick-koehle <50633232+roderick-koehle@users.noreply.github.com> Date: Tue, 13 Jul 2021 22:12:14 +0200 Subject: [PATCH] Minor fix test_Cal3Fisheye --- python/gtsam/tests/test_Cal3Fisheye.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/gtsam/tests/test_Cal3Fisheye.py b/python/gtsam/tests/test_Cal3Fisheye.py index 756113b93..646b48881 100644 --- a/python/gtsam/tests/test_Cal3Fisheye.py +++ b/python/gtsam/tests/test_Cal3Fisheye.py @@ -110,7 +110,6 @@ class TestCal3Fisheye(GtsamTestCase): def test_triangulation_skipped(self): """Estimate spatial point from image measurements""" triangulated = gtsam.triangulatePoint3(self.cameras, self.measurements, rank_tol=1e-9, optimize=True) - self.gtsamAssertEquals(measurements[0], self.img_point) self.gtsamAssertEquals(triangulated, self.origin) def test_triangulation_rectify(self): @@ -118,7 +117,6 @@ class TestCal3Fisheye(GtsamTestCase): rectified = gtsam.Point2Vector([k.calibration().calibrate(pt) for k, pt in zip(self.cameras, self.measurements)]) shared_cal = gtsam.Cal3_S2() triangulated = gtsam.triangulatePoint3(self.poses, shared_cal, rectified, rank_tol=1e-9, optimize=False) - self.gtsamAssertEquals(measurements[0], self.img_point) self.gtsamAssertEquals(triangulated, self.origin) def test_retract(self):