Skip to content

Commit 43b558d

Browse files
author
arch
committed
remove lfs files
1 parent 47d854e commit 43b558d

File tree

10 files changed

+12
-24
lines changed

10 files changed

+12
-24
lines changed

assets/README.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

assets/ffmpeg.exe

Lines changed: 0 additions & 3 deletions
This file was deleted.

assets/ffprobe.exe

Lines changed: 0 additions & 3 deletions
This file was deleted.

assets/mpv-1.dll

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/app/docs/user-guide/config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The directory contains several config files. The most interesting are `settings.
99
Config Files:
1010

1111
- `hyperparameter.yaml`: hyperparameter for the algorithms
12-
- `logging_linux.yaml`: the logging configuration for linx
12+
- `logging_linux.yaml`: the logging configuration for linux
1313
- `logging_windows.yaml`: the logging configuration for windows
1414
- `settings.yaml`: application settings
1515
- `ui.yaml`: user interface settings
@@ -19,7 +19,7 @@ Config Files:
1919

2020
#### `settings.yaml`
2121

22-
- `use_kalman_filter`: Enable Kalman Filter
22+
- `use_kalman_filter`: (bool) Enable Kalman Filter
2323
- `use_zoom` (bool): Enable or disable an additional step to zoom in the Video before selecting a tracking feature for the Woman or Men.
2424
- `zoom_factor:` (float): Set the desired zoom value which will be used when the zoom function is activated.
2525
- `tracking_direction` (str): Specify the tracking direction. Allowed values are `'x'` and `'y'`.

funscript_editor/algorithms/funscriptgenerator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ def interpolate_bboxes(self, bboxes :dict) -> None:
227227
boxes = [v for v in bboxes[key].values()]
228228
if len(boxes) == 0: continue
229229

230-
fx0 = interp1d(x, [item[0] for item in boxes], kind = 'cubic')
231-
fy0 = interp1d(x, [item[1] for item in boxes], kind = 'cubic')
230+
fx0 = interp1d(x, [item[0] for item in boxes], kind = 'quadratic')
231+
fy0 = interp1d(x, [item[1] for item in boxes], kind = 'quadratic')
232232
fw = interp1d(x, [item[2] for item in boxes], kind = 'quadratic')
233233
fh = interp1d(x, [item[3] for item in boxes], kind = 'quadratic')
234234

@@ -376,7 +376,7 @@ def scale_score(self, status: str, direction : str = 'y') -> None:
376376
elif direction == 'x':
377377
title_max = "Right"
378378
else:
379-
title_max = "Maxmimum"
379+
title_max = "Maximum"
380380

381381
(desired_min, desired_max) = self.min_max_selector(
382382
image_min = imgMin,

funscript_editor/config/hyperparameter.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ shift_right_points: 0
6767

6868
# An fix offset to the left points (positive values move the point right and negative values
6969
# move the point left). The offset respect the user defined upper and lower limit.
70-
left_points_offset: -10.0
70+
left_points_offset: -7.5
7171

7272
# An fix offset to the right points (positive values move the point right and negative values
7373
# move the point left). The offset respect the user defined upper and lower limit.
74-
right_points_offset: 10.0
74+
right_points_offset: 7.5
7575

7676
# Define the left threshold. All left points lower than (min + threshold) will be set to
7777
# the specified min value. Set 0.0 to disable this function.

funscript_editor/config/projection.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# projection config
2-
# NOTE: Do not change any parameters here unless you know exactly what you are doing!
1+
# video projection parameters
2+
# Do not change any parameters here unless you know exactly what you are doing!
3+
# For VR video filer options see: https://ffmpeg.org/ffmpeg-filters.html#v360
34

45
# 3D Side-By-Side 180 Dome VR Videos
56
vr_he_sbs:

funscript_editor/config/settings.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ zoom_factor: 4.0
1414
tracking_direction: 'y'
1515

1616
# Limit the max player speed in the tracking preview window (0 = disable limit)
17-
max_playback_fps: 120
17+
max_playback_fps: 0
1818

1919
# Set the preview image scaling factor. With a value of 1.0, the window should fill the height
2020
# or width of the screen depending on the aspect ratio of the video.

funscript_editor/config/ui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ui configuration
1+
# build in ui configuration
22

33
vertical_stretch_factor: [1, 12]
44
horizontal_stretch_factor: [40, 1]

0 commit comments

Comments
 (0)