VideoScope
(VideoScope) |
(add v1.2.1) |
||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat5|External_filters|Plugins|Plugins_x64|Adjustment_filters|Levels and Chroma filters}} |
{{Filter3 | {{Filter3 | ||
|{{Author/Randy French}}, {{Author/Wilbert Dijkhof}} | |{{Author/Randy French}}, {{Author/Wilbert Dijkhof}} | ||
− | |v1.2 | + | |v1.2.1 |
− | |[ | + | |[https://github.com/Reel-Deal/AviSynth-VideoScope/releases VideoScope-v1.2.1.zip] |
|Levels and Chroma | |Levels and Chroma | ||
|5=[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2] | |5=[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2] | ||
Line 13: | Line 13: | ||
<br> | <br> | ||
== Requirements == | == Requirements == | ||
− | * AviSynth 2. | + | * [x86]: [[AviSynth+]] or [https://sourceforge.net/projects/avisynth2/ AviSynth 2.6] |
+ | * [x64]: [[AviSynth+]] | ||
* Supported color formats: [[YUY2]] | * Supported color formats: [[YUY2]] | ||
<br> | <br> | ||
Line 66: | Line 67: | ||
== Changelog == | == Changelog == | ||
Version Date Changes<br> | Version Date Changes<br> | ||
− | v1.2 2004/05/14 - compiled for AviSynth v2.5 and removed the ShowDelta and StackVert functions (Wilbert Dijkhof). | + | v1.2.1 2022/04/15 - Converted to AviSynth+ / AviSynth 2.6 plugin |
+ | - Added support for frame properties passthrough. | ||
+ | - Added resource file | ||
+ | - x86/x64 plugins compiled with MSVC 2019<br> | ||
+ | v1.2 2004/05/14 - compiled for AviSynth v2.5 and removed the ShowDelta and StackVert functions (Wilbert Dijkhof).<br> | ||
v1.1 2001/10/23 - original version (by Randy French) | v1.1 2001/10/23 - original version (by Randy French) | ||
<br> | <br> | ||
Line 87: | Line 92: | ||
==External Links == | ==External Links == | ||
+ | * [https://github.com/Reel-Deal/AviSynth-VideoScope GitHub] - Source code repository | ||
*[http://avisynth.org.ru/docs/english/externalfilters/vscope.htm avisynth.org.ru] - VideoScope documentation. | *[http://avisynth.org.ru/docs/english/externalfilters/vscope.htm avisynth.org.ru] - VideoScope documentation. | ||
<br> | <br> |
Latest revision as of 14:20, 15 April 2022
Abstract | |
---|---|
Author | Randy French, Wilbert Dijkhof |
Version | v1.2.1 |
Download | VideoScope-v1.2.1.zip |
Category | Levels and Chroma |
License | GPLv2 |
Discussion | Doom9 Thread |
Contents |
[edit] Description
You can think of VideoScope as a 'super' histograph. Instead of drawing a histograph for the entire frame, it draws one for each line (side), or each column (bottom).
[edit] Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Supported color formats: YUY2
[edit] Syntax and Parameters
- VideoScope (clip, string "DrawMode", bool "TickMarks", string "HistoTypeSide", string "HistoTypeBottom", string "FrameType")
- clip =
- Input clip must be YUY2.
- clip =
- string DrawMode = "both"
- DrawMode: can be "side", "bottom", or "both".
- string DrawMode = "both"
- bool TickMarks = true
- TickMarks: true or false.
- bool TickMarks = true
- string HistoTypeSide = "Y"
- string HistoTypeBottom = "Y"
- HistoTypeSide / HistoTypeBottom: "Y", "U", "V", "UV", or "YUV".
- string HistoTypeSide = "Y"
- string FrameType = "blank"
- FrameType: "blank", "colormap", "Y", "U", "V", "UV"
- string FrameType = "blank"
[edit] Examples
As an example lets say you used the command:
VideoScope(DrawMode="bottom", TickMarks=true, HistoTypeSide="Y", HistoTypeBottom="Y", FrameType="Y")
You will see the graph below the picture. The vertical position on the graph shows the Y-value (brightness) of the pixels in the picture. The brightness of the pixels in the graph show how many pixels had that Y-value. If only one pixel has that value then it will be dim (but still visible). If many pixels have that value it will be bright white. The graph is 256 pixels tall since there are 256 possible Y-values.
- You can use the tickmarks to get a pretty exact reading of the Y-values.
- The blue ticks are 0-63 and 128-191.
- The brown ticks are 64-127 and 192-255.
- The widely spaced vertical ticks are 16 apart.
- The closer spaced ticks are 8 apart.
- the triple ticks are 4 apart.
VideoScope(DrawMode="both", TickMarks=false, HistoTypeSide="Y", HistoTypeBottom="Y", FrameType="Y")
In the bottom right corner is the full-frame histogram. It is similar to the histogram in VirtualDub. However it uses linear scaling whereas VirtualDub seems to use a logarithmic scale.
VideoScope(DrawMode="both", TickMarks=true, HistoTypeSide="U", HistoTypeBottom="V", FrameType="UV")
- The side (purple) graph shows the U-value.
- The bottom (green) graph shows the V-value.
- The interesting full-frame display is the UV map. The background color is the same as 'colormap' It shows the full UV range.
- Y is held constant at 128.
- V is vertical (0-255 from bottom to top).
- U is horizontal (0-255 from left to right).
- The crosshair represents the neutral (grey) 128,128 value.
- The UV values of all the pixels are mapped to the graph. If just one pixel has a particular UV value, it will show as a black dot. If many pixels have that value it will become brighter.
[edit] Changelog
Version Date Changes
v1.2.1 2022/04/15 - Converted to AviSynth+ / AviSynth 2.6 plugin - Added support for frame properties passthrough. - Added resource file - x86/x64 plugins compiled with MSVC 2019
v1.2 2004/05/14 - compiled for AviSynth v2.5 and removed the ShowDelta and StackVert functions (Wilbert Dijkhof).
v1.1 2001/10/23 - original version (by Randy French)
[edit] Archived Downloads
Version | Download | Mirror |
---|---|---|
v1.2 | VScope12.zip | VScope12.zip |
v1.1 | VScope11.zip | VScope11.zip |
[edit] External Links
- GitHub - Source code repository
- avisynth.org.ru - VideoScope documentation.
Back to External Filters ←