Sbr
From Avisynth wiki
		
		
		
| Abstract | |
|---|---|
| Author | Asd-g | 
| Version | 1.0.0 | 
| Download | sbr-1.0.0.7z | 
| Category | Spatial Denoisers | 
| License | GPLv3 | 
| Discussion | |
| Contents | 
Description
sbr is helper function to make a highpass on a blur's difference, based on an script by Didée (originally released here). sbrV is the same but vertical only (originally released here).
Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
- Progressive input only
-  Supported color formats: Y8, YV12, YV16, YV24
- AviSynth+: All planar YUV formats (8/10/12/14/16-bits) are supported.
 
- *** vcredist_x86.exe is required for sbr-x86
- *** vcredist_x64.exe is required for sbr-x64
Syntax and Parameters
- sbr (clip input, int "y", int "u", int "v", int "opt")
- sbrV (clip input, int "y", int "u", int "v", int "opt")
- clip    =   
 - Input clip.
 
 
- clip    =   
- int  y = 3 
 
- int  u = 2 
 
- int  v = 2 
 - Planes to process.
- 1: Return garbage.
- 2: Copy plane.
- 3: Process plane.
 
- Default: y = 3, u = v = 2.
 
- Planes to process.
 
- int  y = 3 
- int  opt = -1 
 - Sets which cpu optimizations to use.
- -1: Auto-detect.
- 0: Use C++ code.
- 1: Use SSE2 code.
- 2: Use AVX2 code.
- 3: Use AVX512 code.
 
- Default: -1.
 
- Sets which cpu optimizations to use.
 
- int  opt = -1 
Examples
sbr with default settings:
AviSource("Blah.avi") sbr(y=3, u=2, v=2, opt=-1)
sbrV with default settings:
AviSource("Blah.avi") sbrV(y=3, u=2, v=2, opt=-1)
Changelog
Version Date Changes
1.0.0 2022/04/04 - Initial release - Registered as MT_MULTI_INSTANCE.
External Links
- GitHub - Source code repository.
Back to External Filters ←
