diff --git a/modules/python/test/test_calibration.py b/modules/python/test/test_calibration.py index 48b53ff9b2505cd8dae9c48db2e3864c0687cff9..665521862c183654f9447b2dc4799b14dd0dd6e9 100644 --- a/modules/python/test/test_calibration.py +++ b/modules/python/test/test_calibration.py @@ -57,7 +57,7 @@ class calibration_test(NewOpenCVTests): eps = 0.01 normCamEps = 10.0 - normDistEps = 0.01 + normDistEps = 0.001 cameraMatrixTest = [[ 532.80992189, 0., 342.4952186 ], [ 0., 532.93346422, 233.8879292 ], diff --git a/modules/python/test/test_camshift.py b/modules/python/test/test_camshift.py index 11164f9f03cad84b843a98f43d50d2c8b297d8d7..064206edb17d28169c0d2c518bea9168c471d435 100644 --- a/modules/python/test/test_camshift.py +++ b/modules/python/test/test_camshift.py @@ -49,7 +49,6 @@ class camshift_test(NewOpenCVTests): def prepareRender(self): - cv2.namedWindow('camshift') self.render = TestSceneRender(self.get_sample('samples/data/pca_test1.jpg')) def runTracker(self): @@ -95,13 +94,10 @@ class camshift_test(NewOpenCVTests): if self.show_backproj: vis[:] = prob[...,np.newaxis] - cv2.rectangle(vis, (self.track_window[0], self.track_window[1]), (self.track_window[0] + self.track_window[2], self.track_window[1] + self.track_window[3]), (0, 255, 0), 2) - trackingRect = np.array(self.track_window) trackingRect[2] += trackingRect[0] trackingRect[3] += trackingRect[1] - print(intersectionRate((self.render.getCurrentRect()), trackingRect)) self.assertGreater(intersectionRate((self.render.getCurrentRect()), trackingRect), 0.5) if framesCounter > 300: