YRangeMask
From Avisynth wiki
(Difference between revisions)
(→Examples: add illustration) |
(→External Links: add link) |
||
Line 73: | Line 73: | ||
== External Links == | == External Links == | ||
*[http://potatosub.blog.fc2.com/blog-entry-48.html potatosub's blog] - Using [[WarpSharp]] + YRangeMask (Japanese). | *[http://potatosub.blog.fc2.com/blog-entry-48.html potatosub's blog] - Using [[WarpSharp]] + YRangeMask (Japanese). | ||
+ | *[http://csbarn.blogspot.com/2016/01/mtyrangemask.html csbarn.blogspot.com] - mt_yrangemask script, uses MaskTools2 for much better performance (Japanese). | ||
<br> | <br> | ||
<br> | <br> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[External_filters#Averaging.2FLayering.2FMasking|External Filters]] ←''' | '''Back to [[External_filters#Averaging.2FLayering.2FMasking|External Filters]] ←''' |
Revision as of 16:14, 2 March 2016
Abstract | |
---|---|
Author | putin |
Version | v0.03 |
Download | yrangemask003.rar |
Category | Masking |
License | Closed source |
Discussion |
Contents |
Description
AviSynth plug-in to create a mask by specifying the range of the brightness.
Requirements
Syntax and Parameters
- YRangeMask (clip , int "min_y", int "fade_min_y", int "max_y", int "fade_max_y", bool "invert")
- clip =
- Input clip.
- clip =
- int min_y = 0
- Minimum threshold.
- int min_y = 0
- int fade_min_y = 0
- How many minimum pixels to fade.
- int fade_min_y = 0
- int max_y = 0
- Maximum threshold.
- int max_y = 0
- int fade_max_y = 0
- How many maximum pixels to fade.
- int fade_max_y = 0
- bool invert = false
- Set to
true
to invert the mask.
- Set to
- bool invert = false
Examples
Masked areas and the effect of the fade parameters.
Changelog
Version Date Changes
v0.03 02/06/2012 - ? v0.02 28/05/2012 - ? v0.01 01/05/2012 - initial release
Archived Downloads
Version | Download | Mirror |
---|---|---|
v0.03 | yrangemask003.rar | yrangemask003.rar |
v0.02 | yrangemask002.rar | yrangemask002.rar |
External Links
- potatosub's blog - Using WarpSharp + YRangeMask (Japanese).
- csbarn.blogspot.com - mt_yrangemask script, uses MaskTools2 for much better performance (Japanese).
Back to External Filters ←