Skip to content

Commit c5adf3e

Browse files
author
arch
committed
fix kalman
1 parent d732cff commit c5adf3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

funscript_editor/algorithms/funscriptgenerator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def append_interpolated_bbox(self, bbox :tuple, target: str) -> None:
264264
)
265265

266266
for i in range(1, self.params.skip_frames+1):
267-
self.bboxes[target].append((fx0(i), fy0(i), fw(i), fh(i)))
267+
self.bboxes[target].append((float(fx0(i)), float(fy0(i)), float(fw(i)), float(fh(i))))
268268

269269
self.bboxes[target].append(bbox)
270270

0 commit comments

Comments
 (0)