From 2b7261d32ad43ccac013cdc4e77e16ecb3560960 Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Tue, 4 Jul 2023 08:30:58 +0200 Subject: Renaming ArScreen into ArFrame. --- src/argaze.test/GazeAnalysis/NearestNeighborIndex.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/argaze.test/GazeAnalysis') diff --git a/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py b/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py index abd6b2c..c434e1e 100644 --- a/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py +++ b/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py @@ -21,11 +21,11 @@ class TestScanPathAnalyzer(unittest.TestCase): def test_analyze(self): """Test analyze.""" - screen_dimension = (100, 100) + frame_dimension = (100, 100) - nni_analyzer = NearestNeighborIndex.ScanPathAnalyzer(size=screen_dimension) + nni_analyzer = NearestNeighborIndex.ScanPathAnalyzer(size=frame_dimension) - scan_path = GazeFeaturesTest.build_scan_path(6, screen_dimension) + scan_path = GazeFeaturesTest.build_scan_path(6, frame_dimension) # Check aoi scan path self.assertEqual(len(scan_path), 6) -- cgit v1.1