Skip to content

Commit

Permalink
BUG: Fix PyAutoscoper overflow error in trackingDialog and optimizeFrame
Browse files Browse the repository at this point in the history
Forces the use of floats for these values since the server is looking
for doubles.

Reported-by: Jacob Moore <jacob.moore@kitware.com>
  • Loading branch information
NicerNewerCar authored and jcfr committed Jul 26, 2023
1 parent 5642976 commit c29a827
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/python/PyAutoscoper/connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit c29a827

Please sign in to comment.