edge_funcs ¶
Classes:
-
dre_edgemask
–Edgemask with dynamic range enhancement prefiltering.
Functions:
dre_edgemask ¶
Bases: CustomEnum
Edgemask with dynamic range enhancement prefiltering.
Methods:
-
__call__
–Creates an edgemask with dynamic range enhancement (DRE) prefiltering.
Attributes:
CLAHE class-attribute
instance-attribute
¶
Contrast Limited Adaptive Histogram Equalization. Based on the OpenCV implementation
RETINEX class-attribute
instance-attribute
¶
Retinex-based edgemask.
__call__ ¶
__call__(
clip: VideoNode,
tsigma: float = 1,
brz: float = 0.122,
*,
sigmas: Sequence[float] = [50, 200, 350]
) -> ConstantFormatVideoNode
__call__(
clip: VideoNode, tsigma: float = 1, brz: float = 0.122, **kwargs: Any
) -> ConstantFormatVideoNode
Creates an edgemask with dynamic range enhancement (DRE) prefiltering.
This function serves as a wrapper around the retinex
and vszip.CLAHE
functions, applying one of them as a prefilter before generating the edgemask.
Parameters:
-
clip
¶VideoNode
) –Source clip.
-
tsigma
¶float
, default:1
) –Sigma value for TCanny edge detection. Defaults to 1.
-
brz
¶float
, default:0.122
) –Binarization threshold (32-bit float scale). Defaults to 0.122.
-
sigmas
¶Sigma values for the retinex prefilter. Defaults to [50, 200, 350].
-
limit
¶Limit for CLAHE prefilter. Defaults to 0.0305.
-
tile
¶Tile size for CLAHE prefilter. Defaults to 5.
Returns:
-
ConstantFormatVideoNode
–Edgemask clip with applied DRE prefiltering.
Source code
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
|
limited_linemask ¶
limited_linemask(
clip: VideoNode,
sigmas: list[float] = [0.000125, 0.0025, 0.0055],
detail_sigmas: list[float] = [0.011, 0.013],
edgemasks: Sequence[GenericMaskT] = [Kirsch],
**kwargs: Any
) -> ConstantFormatVideoNode
Source code
114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
|
luma_credit_mask ¶
luma_credit_mask(
clip: VideoNode,
thr: float = 0.9,
edgemask: GenericMaskT = FDoGTCanny,
draft: bool = False,
**kwargs: Any
) -> ConstantFormatVideoNode
Source code
86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
|
luma_mask ¶
luma_mask(
clip: VideoNode, thr_lo: float, thr_hi: float, invert: bool = True
) -> ConstantFormatVideoNode
Source code
70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
ringing_mask ¶
ringing_mask(
clip: VideoNode,
rad: int = 2,
brz: float = 0.35,
thmi: float = 0.315,
thma: float = 0.5,
thlimi: float = 0.195,
thlima: float = 0.392,
credit_mask: GenericMaskT = Prewitt,
**kwargs: Any
) -> ConstantFormatVideoNode
Source code
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
|
tcanny_retinex ¶
tcanny_retinex(
clip: VideoNode,
thr: float,
sigma: Sequence[float] = [50, 200, 350],
blur_sigma: float = 1.0,
) -> ConstantFormatVideoNode
Source code
102 103 104 105 106 107 108 109 110 111 |
|