Debicubic
From Avisynth wiki
(Difference between revisions)
(Debicubic) |
m (minor formatting) |
||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat4|External_filters|Plugins|Adjustment_filters|Resizers}} |
− | + | ||
{{Filter3 | {{Filter3 | ||
| Prunedtree | | Prunedtree | ||
Line 10: | Line 10: | ||
<br> | <br> | ||
== Description == | == Description == | ||
− | + | This filter is designed to reverse the effects of bicubic upsampling. Parameters and sampling pattern try to mimic Avisynth's [[Resize|BicubicResize]].<br> | |
<br> | <br> | ||
== Requirements == | == Requirements == | ||
− | + | * AviSynth 2.5.8 or later | |
− | + | * Supported color formats: [[RGB24]], [[RGB32]], [[YV12]] | |
− | + | * [[SSE2]] capable CPU | |
<br> | <br> | ||
== Limitations == | == Limitations == | ||
− | + | *Sampling at 1:1 resolution is known to be unstable. | |
− | + | *This filter is not made for upsampling. | |
<br> | <br> | ||
== [[Script variables|Syntax and Parameters]] == | == [[Script variables|Syntax and Parameters]] == | ||
Line 26: | Line 26: | ||
:{{Template:FuncDef|debicubicY (clip, int target_width, int target_height, float "src_left", float "src_top", float "src_width", float "src_height", bool "lsb_inout", float "b", float "c")}} | :{{Template:FuncDef|debicubicY (clip, int target_width, int target_height, float "src_left", float "src_top", float "src_width", float "src_height", bool "lsb_inout", float "b", float "c")}} | ||
+ | <br> | ||
+ | ::{{Par2| |clip| }} | ||
+ | :::Input clip. | ||
<br> | <br> | ||
::{{Par2|target_width|int| }} | ::{{Par2|target_width|int| }} | ||
Line 66: | Line 69: | ||
<br> | <br> | ||
== External Links == | == External Links == | ||
− | |||
<br> | <br> | ||
<br> | <br> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[External_filters#Resizers|External Filters]] ←''' | '''Back to [[External_filters#Resizers|External Filters]] ←''' |
Revision as of 19:30, 20 September 2014
Abstract | |
---|---|
Author | Prunedtree |
Version | r2 |
Download | debicubic r2.zip |
Category | Resize |
License | Closed source |
Discussion |
Contents |
Description
This filter is designed to reverse the effects of bicubic upsampling. Parameters and sampling pattern try to mimic Avisynth's BicubicResize.
Requirements
- SSE2 capable CPU
Limitations
- Sampling at 1:1 resolution is known to be unstable.
- This filter is not made for upsampling.
Syntax and Parameters
- debicubic (clip, int target_width, int target_height, float "src_left", float "src_top", float "src_width", float "src_height", bool "lsb_inout", float "b", float "c")
- debicubicY (clip, int target_width, int target_height, float "src_left", float "src_top", float "src_width", float "src_height", bool "lsb_inout", float "b", float "c")
- clip =
- Input clip.
- clip =
- int target_width =
- int target_height =
- presumed 'native' resolution.
- int target_width =
- float src_left = 0
- float src_top = 0
- float src_width =
- float src_height =
- Optional crop rectangle in the input frame.
- float src_left = 0
- bool lsb_inout = false
- 16-bit input and output; uses DitherTools' Stack16 format.
- bool lsb_inout = false
- float b =
- float c =
- The parameters b and c can be used to adjust the properties of the cubic,
- they are sometimes referred to as "blurring" and "ringing" respectively.
- float b =
- debicubicY ignores chroma planes.
Changelog
Version Date Changes
r2 08/31/2013 - r2 r1 ??/??/???? - initial release
Archived Downloads
Version | Download | Mirror |
---|---|---|
r2 | debicubic r2.zip | debicubic r2.zip |
External Links
Back to External Filters ←