DePanEstimate
m (copy paste errors) |
(→Description: update link) |
||
(2 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat6|External_filters|Plugins|Plugins_x64|Restoration_filters|Stabilizers|Deep_color_tools}} |
{{Filter3 | {{Filter3 | ||
| {{Author/Fizick}}, {{Author/pinterf}} | | {{Author/Fizick}}, {{Author/pinterf}} | ||
Line 10: | Line 10: | ||
== Description == | == Description == | ||
− | DePanEstimate is a plugin for full or partial global motion compensation, to be used in conjunction with [[DePan]]. Full documentation is here: http:// | + | DePanEstimate is a plugin for full or partial global motion compensation, to be used in conjunction with [[DePan]]. Full documentation is here: http://www.avisynth.nl/users/fizick/depan/depan.html |
*'''Note''': [[DePan]] and [[DePanEstimate]] are bundled as a package with MVTools2. | *'''Note''': [[DePan]] and [[DePanEstimate]] are bundled as a package with MVTools2. | ||
Line 19: | Line 19: | ||
* [x64]: [[AviSynth+]] | * [x64]: [[AviSynth+]] | ||
* Supported color formats: [[YUY2]], [[Y8]], [[YV12]], [[YV16]], [[YV24]], [[YV411]] | * Supported color formats: [[YUY2]], [[Y8]], [[YV12]], [[YV16]], [[YV24]], [[YV411]] | ||
− | **AviSynth+: all 8-16bit planar YUV formats are supported | + | **AviSynth+: all 8-16bit [[planar]] Y/YUV formats are supported |
<br> | <br> | ||
− | * Microsoft Visual C++ | + | * [https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads Microsoft Visual C++ 2019 Redistributable Package] (x86 / x64) |
:<span style="color:red">***</span> <tt>vcredist_x86.exe</tt> is required for <tt>DePanEstimate-x86</tt> | :<span style="color:red">***</span> <tt>vcredist_x86.exe</tt> is required for <tt>DePanEstimate-x86</tt> | ||
:<span style="color:red">***</span> <tt>vcredist_x64.exe</tt> is required for <tt>DePanEstimate-x64</tt> | :<span style="color:red">***</span> <tt>vcredist_x64.exe</tt> is required for <tt>DePanEstimate-x64</tt> |
Latest revision as of 08:48, 9 February 2023
Abstract | |
---|---|
Author | Fizick, pinterf |
Version | DepanEstimate v2.10.0.3 |
Download | mvtools-2.7.41-with-depans20200430.7z |
Category | Stabilizers |
License | GPLv2 |
Discussion | Doom9 Thread |
Contents |
[edit] Description
DePanEstimate is a plugin for full or partial global motion compensation, to be used in conjunction with DePan. Full documentation is here: http://www.avisynth.nl/users/fizick/depan/depan.html
- Note: DePan and DePanEstimate are bundled as a package with MVTools2.
[edit] Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Supported color formats: YUY2, Y8, YV12, YV16, YV24, YV411
- AviSynth+: all 8-16bit planar Y/YUV formats are supported
- *** vcredist_x86.exe is required for DePanEstimate-x86
- *** vcredist_x64.exe is required for DePanEstimate-x64
[edit] Syntax and Parameters
This function uses phase-shift method (by fast Fourier transform) for global motion estimation. It uses some central region of every frame (or field) as FFT window to find the inter-frames correlation and to calculate the most appropriate values of vertical and horizontal shifts, which fit current frame to previous one. The some relative correlation parameter is used as trust measure and for scene change detection. In zoom mode, plugin uses left and right sub-windows to estimate both displacements and zoom. Output is special service clip with coded motion data in frames, and optional log file.
- DePanEstimate (clip, int "range", float "trust", int "winx", int "winy", int "wleft", int wtop" int "dxmax", int "dymax", float "zoommax", float "stab", float "pixaspect", bool "info", string "log", bool "debug", bool "show", string "extlog", bool "fftw")
- clip clp =
- Input clip.
- clip clp =
- int range = 0
- Number of previous (and also next) frames near requested frame to estimate motion. Value must be equal to or greater than 0.
- int range = 0
- float trust = 4.0
- float trust = 4.0
- int winy = 0
- int winx = 0
winx
- number of columns (width) of fft window (default = 0 for maximum power of 2 within frame width).winy
- number of rows (height) of fft window (default = 0 for maximum power of 2 within frame height).
- int winy = 0
- int wleft = -1
- int wright = -1
wleft
- left position (offset) of fft window (default = -1 for auto centered window).wtop
- top position (offset) of fft window (default = -1 for auto centered window).
- int wleft = -1
- int dxmax = -1
- int dymax = -1
dxmax
- limit of x shift (default = -1 forwinx
/4)dymax
- limit of y shift (default = -1 forwiny
/4)
- int dxmax = -1
- float zoommax = 1.0
- Maximum zoom factor (if = 1.0 (default), zoom is not estimated).
- float zoommax = 1.0
- float stab = 1.0
- Decreasing of calculated trust for large shifts (
factor dxmax/(dxmax + stab*abs(dx))
):- = 0.0 - not decrease,
- = 1.0 (default) - half at
dxmax
,dymax
.
- Decreasing of calculated trust for large shifts (
- float stab = 1.0
- float pixaspect = 1.0
- Pixel aspect (default = 1.0).
- float pixaspect = 1.0
- bool info = false
- Show motion info on frame (default = false).
- bool info = false
- string log = ""
- Output log filename with motion data (in the VirtualDub Deshaker plugin format) (default none, not write).
- string log = ""
- bool debug = false
- Output data for debugview utility (default = false).
- bool debug = false
- bool show = false
- Show correlation surface (default = false).
- bool show = false
- string extlog = ""
- Output extended log filename with motion and trust data (default none, not write)
- string extlog = ""
[edit] Notes
trust
parameter defines some threshold value of inter-frame similarity (corelation). It defines how similar must be current frame to prev frame in the same scene. DePanEstimare detects scenechange at current frame, if current correlation value is below the threshold. Set it lower to prevent false scene change detecting, set it higher to prevent skipping of real scenechange (with shaking). Default value is good for most video, but you can test it in info
mode.
[edit] Changelog
Version Date Changes
v1.10 2016/02/22 - Last release by Fizick, see included documentation for full changelog
Back to External Filters ←