diff --git a/devdocker.zip b/devdocker.zip index 91cf03f..7a1b525 100644 Binary files a/devdocker.zip and b/devdocker.zip differ diff --git a/pkg/agent/tasks/lib/scenedetection/svm_poly3.py b/pkg/agent/tasks/lib/scenedetection/svm_poly3.py index d5d6883..91f8b69 100644 --- a/pkg/agent/tasks/lib/scenedetection/svm_poly3.py +++ b/pkg/agent/tasks/lib/scenedetection/svm_poly3.py @@ -467,7 +467,7 @@ def find_match(curr, ref, width, height, index): # FLANN parameters FLANN_INDEX_KDTREE = 1 # Use k-d trees for nearest neighbor search - NUM_TREES = 5 # Default, more trees is faster but uses more memory and is slower + NUM_TREES = 5 # Default, more trees is faster but uses more memory NUM_CHECKS = 50 # Number of neighbors to check index_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = NUM_TREES) search_params = dict(checks = NUM_CHECKS)