Skip to content

Commit 1fc7c5d

Browse files
author
arch
committed
remove debug code
1 parent 52d4b15 commit 1fc7c5d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

funscript_editor/algorithms/funscriptgenerator.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,11 @@ def get_dick_pos(self, max_distance_frame_num: int) -> dict:
189189
max_distance_frame = FFmpegStream.get_projection(max_distance_frame, self.projection_config)
190190
frame_h, frame_w = max_distance_frame.shape[:2]
191191
center_line = self.ui.line_selector(max_distance_frame, "draw line on center of dick")
192-
print('center_line', center_line)
193192

194193
# last idx: 0 = x, 1 = y
195194
dick_pos = { 'w': center_line[1], 'm': center_line[0] } \
196195
if center_line[0][1] > center_line[1][1] \
197196
else { 'w': center_line[0], 'm': center_line[1] }
198-
print('dick_pos', dick_pos)
199197

200198
# TODO: dividor is an hyperparameter
201199
dx = (dick_pos['m'][0] - dick_pos['w'][0]) / 3

0 commit comments

Comments
 (0)