Pixelscope
From Avisynth wiki
| Abstract | |
|---|---|
| Author | wonkey_monkey |
| Version | v0.1 |
| Download | pixelscope0.1.zip |
| Category | Debug filter |
| License | ? |
| Discussion | Doom9 Thread |
Contents |
Description
This debugging filter displays individual pixel values.
Requirements
- [x86] AviSynth+ or AviSynth 2.6
- [x64] AviSynth+
- Supported color formats: RGB24, RGB32, Y8, YUY2, YV12, YV16, YV24, YV411
Syntax and Parameters
- pixelscope (clip, int "scale", bool "hex", int "darken", bool "grid", bool "interlaced", string "matrix", bool "nocrop", bool "right")
- clip =
- Input clip.
- clip =
- int scale = 32
- Upscale factor.
- int scale = 32
- bool hex = false
- Displays values in hexadecimal.
- bool hex = false
- int darken = 1
- This parameters darkens the input video for display. It does not affect displayed pixel values.
- int darken = 1
- 0 : do not darken video
- 1 : darken video (default)
- 2 : darken video more
- bool grid = true
- Enable/disable grid lines.
- bool grid = true
- bool interlaced = false
- For YV12 video, this determines whether the video is treated as interlaced when converted to RGB for display, and also changes how the UV values are displayed to reflect interlacing.
- bool interlaced = false
- string matrix = "rec601"
- Colour matrix to use when converting to RGB for display. See ConvertToRGB.
- string matrix = "rec601"
- bool nocrop = false
- By default, pixelscope crops the input so that the output does not exceed 4K resolution - this is to avoid crashing AviSynth or your viewer. Setting this to true disables cropping
- bool nocrop = false
- bool right = false
- Right aligns pixel values instead of centering them.
- bool right = false
Examples
ColorBars() pixelscope()
Changelog
Version Date Changes
v0.1 2018/08/26 - Initial release
Archived Downloads
| Version | Download | Mirror |
|---|---|---|
| v0.1 | pixelscope0.1.zip |
External Links
Back to External Filters ←