We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d41f4a commit 2f795eaCopy full SHA for 2f795ea
funscript_editor/algorithms/funscriptgenerator.py
@@ -4,6 +4,7 @@
4
import copy
5
import time
6
import math
7
+import json
8
import logging
9
10
from screeninfo import get_monitors
@@ -26,7 +27,6 @@
26
27
import funscript_editor.algorithms.signalprocessing as sp
28
import numpy as np
29
-
30
@dataclass
31
class FunscriptGeneratorParameter:
32
""" Funscript Generator Parameter Dataclass with default values """
@@ -940,6 +940,10 @@ def run(self) -> None:
940
with Listener(on_press=self.on_key_press) as _:
941
status = self.tracking()
942
943
+ if False:
944
+ with open('debug.json', 'w') as f:
945
+ json.dump(self.score, f)
946
+
947
if self.params.use_kalman_filter:
948
self.apply_kalman_filter()
949
0 commit comments