diff options
Diffstat (limited to 'src/argaze.test/GazeAnalysis/NearestNeighborIndex.py')
-rw-r--r-- | src/argaze.test/GazeAnalysis/NearestNeighborIndex.py | 6 |
1 files changed, 3 insertions, 3 deletions
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) |