Skip to content

Commit 97fa47f

Browse files
author
arch
committed
update docs
1 parent 7f401fa commit 97fa47f

16 files changed

+178
-22
lines changed

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-07-03 08:25:01.317170+00:00
207+
Build Date UTC : 2021-07-03 18:15:39.307380+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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ <h2 id="config-files">Config Files</h2>
126126
<h3 id="config-parameter">Config Parameter</h3>
127127
<h4 id="settingsyaml"><code>settings.yaml</code></h4>
128128
<ul>
129+
<li><code>use_kalman_filter</code>: Enable Kalman Filter</li>
129130
<li><code>use_zoom</code> (bool): Enable or disable an additional step to zoom in the Video before selecting a tracking feature for the Woman or Men.</li>
130131
<li><code>zoom_factor:</code> (float): Set the desired zoom value which will be used when the zoom function is activated.</li>
131132
<li><code>tracking_direction</code> (str): Specify the tracking direction. Allowed values are <code>'x'</code> and <code>'y'</code>.</li>

docs/app/site/user-guide/ofs-integration/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ <h2 id="installation-windows">Installation (Windows)</h2>
123123
<li>Download the <strong>latest</strong> <code>funscript_generator.lua</code> script from <a href="https://github.com/michael-mueller-git/Python-Funscript-Editor/releases">github release page</a>.</li>
124124
<li>Move the downloaded <code>funscript_generator.lua</code> script to <code>data/lua</code> in your OFS directory.</li>
125125
<li>Open the <code>funscript_generator.lua</code> file and adjust the <code>Settings.FunscriptGenerator</code> and <code>Settings.TmpFile</code> variable.</li>
126-
<li><strong>NOTE:</strong> You have to use use <code>/</code> or <code>\\</code> for the <code>\</code> symbols in your path!</li>
126+
<li><strong>NOTE:</strong> If you copy the path from Windows explorer to the variable in the lua script you have to escape the <code>\</code> symbol. This mean you have to put another <code>\</code> in front of each <code>\</code> so that there are always <code>\\</code> pairs. As an alternative, you can use a simple <code>/</code> instead of the single <code>\</code> Symbole that also work.</li>
127127
<li><code>Settings.FunscriptGenerator</code>: Point to the extracted Python Funscript Editor program (better double check the complete path string to avoid errors later on).</li>
128128
<li><code>Settings.TmpFile</code>: Specifies a temporary file location where to store the result (must be a file not a directory!). The file does not have to exist at the moment. The specified file will be generated from the Python Funscript Editor and will be overwritten automatically at the next time the generator is started!</li>
129129
<li>Now launch OFS.</li>
4.69 KB
Binary file not shown.
37.9 KB
Binary file not shown.
372 Bytes
Binary file not shown.

docs/code/_build/html/_sources/funscript_editor.algorithms.rst.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ funscript\_editor.algorithms.funscriptgenerator module
1212
:undoc-members:
1313
:show-inheritance:
1414

15+
funscript\_editor.algorithms.kalmanfilter module
16+
------------------------------------------------
17+
18+
.. automodule:: funscript_editor.algorithms.kalmanfilter
19+
:members:
20+
:undoc-members:
21+
:show-inheritance:
22+
1523
funscript\_editor.algorithms.signalprocessing module
1624
----------------------------------------------------
1725

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

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

0 commit comments

Comments
 (0)