AWarpsharp2/aSobel
From Avisynth wiki
Back to aWarpSharp2 ←
Description
An edge dectecion filter.
Syntax and Parameters
- aSobel (clip, int "thresh", int "chroma")
- int thresh = 128
- Range: 0 to 255
- Saturation limit for edge detection. Reduce for less aggressive sharpening.
- Range: 0 to 255
- int thresh = 128
- int chroma = 1
- Processing mode for chroma planes (U and V):
- 0 : fill with zeroes
- 1 : don't care
- 2 : copy
- 3 : process
- 4 : guide by luma
- 5 : same as 3, but don't process luma
- 6 : same as 4, but don't process luma
- Processing mode for chroma planes (U and V):
- int chroma = 1
Examples
aSobel with default values.
AviSource("blah.avi") aSobel(thresh=128, chroma=1)
Back to aWarpSharp2 ←