Skip to content

Commit 0a52a76

Browse files
author
arch
committed
create new release
1 parent 13dce23 commit 0a52a76

File tree

13 files changed

+43
-11
lines changed

13 files changed

+43
-11
lines changed

contrib/OpenFunscripter/funscript_generator.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Settings = {}
2-
Settings.FunscriptGenerator = 'C:/Users/win10/Desktop/funscript editor/funscript-editor.exe' -- Path to your Python Funscript Editor installation
2+
Settings.FunscriptGenerator = 'C:/Users/win10/Desktop/funscript-editor/funscript-editor.exe' -- Path to your Python Funscript Editor installation
33
Settings.TmpFile = 'C:/Users/win10/AppData/Local/Temp/funscript_actions.csv' -- file where to temporary store the result (must be a file not a directory!)
44
SetSettings(Settings)
55

docs/app/site/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,5 +204,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>
204204

205205
<!--
206206
MkDocs version : 1.1.2
207-
Build Date UTC : 2021-06-27 17:20:43.616076+00:00
207+
Build Date UTC : 2021-06-27 18:43:09.513573+00:00
208208
-->

docs/app/site/search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/app/site/sitemap.xml.gz

0 Bytes
Binary file not shown.

docs/app/site/user-guide/config/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ <h4 id="hyperparameteryaml"><code>hyperparameter.yaml</code></h4>
131131
<li><code>min_frames</code> (int): Specify the minimum required frames for the tracking. Wee need this parameter to ensure there is at leas two strokes in the tracking result.</li>
132132
<li><code>shift_top_points</code> (int): Shift predicted top points by given frame number. Positive values delay the position and negative values result in an earlier position.</li>
133133
<li><code>shift_bottom_points</code> (int): Shift predicted bottom points by given frame number. Positive values delay the position and negative values result in an earlier position.</li>
134+
<li><code>top_points_offset</code> (float): An fix offset to the top points (positive values move the point up and negative values move the point down). The offset respect the user defined upper and lower limit.</li>
135+
<li><code>bottom_points_offset</code> (float): An fix offset to the bottom points (positive values move the point up and negative values move the point down). The offset respect the user defined upper and lower limit.</li>
134136
<li><code>top_threshold</code> (float): Define the top threshold. All top points greater than <code>(max - threshold)</code> will be set to the specified max value. Set 0.0 to disable this function.</li>
135137
<li><code>bottom_threshold</code> (float): Define the bottom threshold. All bottom points lower than <code>(min + threshold)</code> will be set to the specified min value. Set 0.0 to disable this function.</li>
136138
</ul>
1013 Bytes
Binary file not shown.
8.14 KB
Binary file not shown.
114 Bytes
Binary file not shown.

docs/code/_build/html/funscript_editor.algorithms.html

Lines changed: 25 additions & 3 deletions
Large diffs are not rendered by default.

docs/code/_build/html/funscript_editor.utils.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this
185185
<p>Configuration parser</p>
186186
<dl class="py data">
187187
<dt class="sig sig-object py" id="funscript_editor.utils.config.HYPERPARAMETER">
188-
<span class="sig-prename descclassname"><span class="pre">funscript_editor.utils.config.</span></span><span class="sig-name descname"><span class="pre">HYPERPARAMETER</span></span><em class="property"> <span class="pre">=</span> <span class="pre">{'avg_sec_for_local_min_max_extraction':</span> <span class="pre">1.9,</span> <span class="pre">'bottom_threshold':</span> <span class="pre">5.0,</span> <span class="pre">'min_frames':</span> <span class="pre">120,</span> <span class="pre">'shift_bottom_points':</span> <span class="pre">0,</span> <span class="pre">'shift_top_points':</span> <span class="pre">0,</span> <span class="pre">'skip_frames':</span> <span class="pre">1,</span> <span class="pre">'top_threshold':</span> <span class="pre">5.0}</span></em><a class="headerlink" href="#funscript_editor.utils.config.HYPERPARAMETER" title="Permalink to this definition"></a></dt>
188+
<span class="sig-prename descclassname"><span class="pre">funscript_editor.utils.config.</span></span><span class="sig-name descname"><span class="pre">HYPERPARAMETER</span></span><em class="property"> <span class="pre">=</span> <span class="pre">{'avg_sec_for_local_min_max_extraction':</span> <span class="pre">1.9,</span> <span class="pre">'bottom_points_offset':</span> <span class="pre">-15.0,</span> <span class="pre">'bottom_threshold':</span> <span class="pre">2.5,</span> <span class="pre">'min_frames':</span> <span class="pre">120,</span> <span class="pre">'shift_bottom_points':</span> <span class="pre">0,</span> <span class="pre">'shift_top_points':</span> <span class="pre">0,</span> <span class="pre">'skip_frames':</span> <span class="pre">1,</span> <span class="pre">'top_points_offset':</span> <span class="pre">5.0,</span> <span class="pre">'top_threshold':</span> <span class="pre">2.5}</span></em><a class="headerlink" href="#funscript_editor.utils.config.HYPERPARAMETER" title="Permalink to this definition"></a></dt>
189189
<dd><p>hyperparameter for the algorithms</p>
190190
</dd></dl>
191191

@@ -203,7 +203,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this
203203

204204
<dl class="py data">
205205
<dt class="sig sig-object py" id="funscript_editor.utils.config.VERSION">
206-
<span class="sig-prename descclassname"><span class="pre">funscript_editor.utils.config.</span></span><span class="sig-name descname"><span class="pre">VERSION</span></span><em class="property"> <span class="pre">=</span> <span class="pre">'0.0.0'</span></em><a class="headerlink" href="#funscript_editor.utils.config.VERSION" title="Permalink to this definition"></a></dt>
206+
<span class="sig-prename descclassname"><span class="pre">funscript_editor.utils.config.</span></span><span class="sig-name descname"><span class="pre">VERSION</span></span><em class="property"> <span class="pre">=</span> <span class="pre">'0.0.5'</span></em><a class="headerlink" href="#funscript_editor.utils.config.VERSION" title="Permalink to this definition"></a></dt>
207207
<dd><p>the package version</p>
208208
</dd></dl>
209209

0 commit comments

Comments
 (0)