Skip to content

Commit 404648c

Browse files
author
arch
committed
add perspective scaling parameter
1 parent 1d9a738 commit 404648c

19 files changed

+275
-37
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ Config Files:
2929

3030
- `use_zoom` (bool): Enable or disable an additional step to zoom in the Video before selecting a tracking feature for the Woman or Men.
3131
- `use_equirectangular` (bool): Convert video in normal perspective view before apply tracking. This should improve the tracking at the border of videos, because there is the distortion very high.
32+
- `equirectangular_scaling` (float): scaling parameter for the equirectangular preview window. `1.0` is `1240x720`, `1.5` would be `1860x1080`, ... (Do not use to high scaling values, the perspective calculation need a lot of computer resources!)
33+
3234
- `tracking_direction` (str): Specify the tracking direction. Allowed values are `'x'` and `'y'`.
3335
- `max_playback_fps` (int): Limit the max player speed in the tracking preview window (0 = disable limit)
3436

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-26 10:28:30.067521+00:00
207+
Build Date UTC : 2021-06-26 14:27:54.584497+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: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,13 @@ <h4 id="hyperparameteryaml"><code>hyperparameter.yaml</code></h4>
135135
<h4 id="settingsyaml"><code>settings.yaml</code></h4>
136136
<ul>
137137
<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>
138-
<li><code>tracking_direction</code> (str): Specify the tracking direction. Allowed values are <code>'x'</code> and <code>'y'</code>.</li>
138+
<li><code>use_equirectangular</code> (bool): Convert video in normal perspective view before apply tracking. This should improve the tracking at the border of videos, because there is the distortion very high.</li>
139+
<li>
140+
<p><code>equirectangular_scaling</code> (float): scaling parameter for the equirectangular preview window. <code>1.0</code> is <code>1240x720</code>, <code>1.5</code> would be <code>1860x1080</code>, ... (Do not use to high scaling values, the perspective calculation need a lot of computer resources!)</p>
141+
</li>
142+
<li>
143+
<p><code>tracking_direction</code> (str): Specify the tracking direction. Allowed values are <code>'x'</code> and <code>'y'</code>.</p>
144+
</li>
139145
<li><code>max_playback_fps</code> (int): Limit the max player speed in the tracking preview window (0 = disable limit)</li>
140146
</ul>
141147
<h4 id="video_scalingjson"><code>video_scaling.json</code></h4>
4.64 KB
Binary file not shown.
47.3 KB
Binary file not shown.
124 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
@@ -4,6 +4,14 @@ funscript\_editor.algorithms namespace
44
Submodules
55
----------
66

7+
funscript\_editor.algorithms.equirectangular module
8+
---------------------------------------------------
9+
10+
.. automodule:: funscript_editor.algorithms.equirectangular
11+
:members:
12+
:undoc-members:
13+
:show-inheritance:
14+
715
funscript\_editor.algorithms.funscriptgenerator module
816
------------------------------------------------------
917

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

Lines changed: 151 additions & 5 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)