From c29a8278323e5fe3b70b0c5dbf17da78548a7968 Mon Sep 17 00:00:00 2001 From: Anthony Lombardi Date: Wed, 14 Jun 2023 15:50:13 -0400 Subject: [PATCH] BUG: Fix PyAutoscoper overflow error in trackingDialog and optimizeFrame Forces the use of floats for these values since the server is looking for doubles. Reported-by: Jacob Moore --- scripts/python/PyAutoscoper/connect.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/python/PyAutoscoper/connect.py b/scripts/python/PyAutoscoper/connect.py index 8648cebb..c3ccd967 100644 --- a/scripts/python/PyAutoscoper/connect.py +++ b/scripts/python/PyAutoscoper/connect.py @@ -464,8 +464,8 @@ def optimizeFrame( frame, repeats, max_itr, - min_lim, - max_lim, + float(min_lim), + float(max_lim), max_stall_itr, dframe, opt_method,