Skip to content

sharp

Functions:

fine_sharp

fine_sharp(
    clip: VideoNode,
    mode: int = 1,
    sstr: float = 2.0,
    cstr: float | None = None,
    xstr: float = 0.19,
    lstr: float = 1.49,
    pstr: float = 1.272,
    ldmp: float | None = None,
    planes: PlanesT = 0,
) -> ConstantFormatVideoNode
Source code
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
def fine_sharp(
    clip: vs.VideoNode, mode: int = 1, sstr: float = 2.0, cstr: float | None = None, xstr: float = 0.19,
    lstr: float = 1.49, pstr: float = 1.272, ldmp: float | None = None, planes: PlanesT = 0
) -> ConstantFormatVideoNode:
    from numpy import asarray

    func = FunctionUtil(clip, fine_sharp, planes)

    if cstr is None:
        cs = interpolate.CubicSpline(
            (0, 0.5, 1.0, 2.0, 2.5, 3.0, 3.5, 4.0, 8.0, 255.0),
            (0, 0.1, 0.6, 0.9, 1.0, 1.09, 1.15, 1.19, 1.249, 1.5)
        )
        cstr = float(cs(asarray(sstr)))

    if ldmp is None:
        ldmp = sstr + 0.1

    blur_kernel = BlurMatrix.BINOMIAL()
    blur_kernel2: GenericVSFunction[ConstantFormatVideoNode] = blur_kernel

    if mode < 0:
        cstr **= 0.8
        blur_kernel2 = box_blur

    mode = abs(mode)

    if mode == 1:
        blurred = median_blur(blur_kernel(func.work_clip))
    elif mode > 1:
        blurred = blur_kernel(median_blur(func.work_clip))
    if mode == 3:
        blurred = median_blur(blurred)

    diff = norm_expr(
        [func.work_clip, blurred],
        'range_size 256 / SCL! x y - SCL@ / D! D@ abs DA! DA@ {lstr} / 1 {pstr} / pow {sstr} * '
        'D@ DA@ 0.001 + / * D@ 2 pow D@ 2 pow {ldmp} + / * SCL@ * neutral +',
        lstr=lstr, pstr=pstr, sstr=sstr, ldmp=ldmp,
        func=func.func
    )

    sharp = func.work_clip

    if sstr:
        sharp = sharp.std.MergeDiff(diff)

    if cstr:
        diff = norm_expr(diff, 'x neutral - {cstr} * neutral +', cstr=cstr, func=func.func)
        diff = blur_kernel2(diff)
        sharp = sharp.std.MakeDiff(diff)

    if xstr:
        xysharp = norm_expr([sharp, box_blur(sharp)], 'x x y - 9.9 * +', func=func.func)
        rpsharp = repair(xysharp, sharp, 12)
        sharp = rpsharp.std.Merge(sharp, weight=[1 - xstr])

    return func.return_clip(sharp)

limit_usm

limit_usm(
    clip: VideoNode,
    blur: int | VideoNode | VSFunctionNoArgs[VideoNode, VideoNode] = 1,
    thr: int | tuple[int, int] = 3,
    elast: float = 4.0,
    bright_thr: int | None = None,
    planes: PlanesT = None,
) -> ConstantFormatVideoNode

Limited unsharp_masked.

Source code
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
def limit_usm(
    clip: vs.VideoNode, blur: int | vs.VideoNode | VSFunctionNoArgs[vs.VideoNode, vs.VideoNode] = 1,
    thr: int | tuple[int, int] = 3, elast: float = 4.0, bright_thr: int | None = None,
    planes: PlanesT = None
) -> ConstantFormatVideoNode:
    """Limited unsharp_masked."""

    if callable(blur):
        blurred = blur(clip)
    elif isinstance(blur, vs.VideoNode):
        blurred = blur
    elif blur <= 0:
        blurred = min_blur(clip, -blur, planes=planes)
    elif blur == 1:
        blurred = BlurMatrix.BINOMIAL()(clip, planes)
    elif blur == 2:
        blurred = BlurMatrix.MEAN()(clip, planes)
    else:
        raise CustomTypeError("'blur' must be an int, clip or a blurring function!", limit_usm, blur)

    sharp = norm_expr([clip, blurred], 'x dup y - +', planes, func=limit_usm)

    return limit_filter(sharp, clip, thr=thr, elast=elast, bright_thr=bright_thr)

soothe

soothe(
    flt: VideoNode,
    src: VideoNode,
    spatial_strength: float = 0,
    temporal_strength: float = 0.75,
    spatial_radius: int = 1,
    temporal_radius: int = 1,
    scenechange: bool = False,
    planes: PlanesT = None,
) -> ConstantFormatVideoNode
Source code
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
def soothe(
    flt: vs.VideoNode, src: vs.VideoNode,
    spatial_strength: float = 0, temporal_strength: float = 0.75,
    spatial_radius: int = 1, temporal_radius: int = 1,
    scenechange: bool = False, planes: PlanesT = None
) -> ConstantFormatVideoNode:
    sharp_diff = src.std.MakeDiff(flt, planes)

    expr = (
        'x neutral - X! y neutral - Y! X@ Y@ xor X@ {strength} / neutral + '
        'X@ abs Y@ abs > x y - {strength} / y + x ? ?'
    )

    if spatial_strength:
        blurred = box_blur(sharp_diff, spatial_radius, planes=planes)
        sharp_diff = norm_expr([sharp_diff, blurred], expr, strength=spatial_strength + 1.0, planes=planes, func=soothe)

    if temporal_strength:
        blurred = box_blur(sharp_diff, temporal_radius, mode=ConvMode.TEMPORAL, scenechange=scenechange, planes=planes)
        sharp_diff = norm_expr([sharp_diff, blurred], expr, strength=temporal_strength + 1.0, planes=planes, func=soothe)

    return src.std.MakeDiff(sharp_diff, planes)

unsharp_masked

unsharp_masked(
    clip: VideoNode,
    radius: int | list[int] = 1,
    strength: float = 100.0,
    planes: PlanesT = None,
) -> ConstantFormatVideoNode
Source code
44
45
46
47
48
49
50
51
52
53
54
55
56
57
def unsharp_masked(
    clip: vs.VideoNode, radius: int | list[int] = 1, strength: float = 100.0, planes: PlanesT = None
) -> ConstantFormatVideoNode:

    assert check_variable(clip, unsharp_masked)

    planes = normalize_planes(clip, planes)

    if isinstance(radius, list):
        return normalize_radius(clip, unsharp_masked, radius, planes, strength=strength)

    blurred = BlurMatrix.LOG(radius, strength=strength)(clip, planes)

    return norm_expr([clip, blurred], 'x dup y - +', func=unsharp_masked)

unsharpen

unsharpen(
    clip: VideoNode,
    strength: float = 1.0,
    blur: (
        VideoNode | VSFunctionNoArgs[VideoNode, ConstantFormatVideoNode]
    ) = partial(gauss_blur, sigma=1.5),
    planes: PlanesT = None,
) -> ConstantFormatVideoNode
Source code
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
def unsharpen(
    clip: vs.VideoNode, strength: float = 1.0,
    blur: vs.VideoNode | VSFunctionNoArgs[vs.VideoNode, ConstantFormatVideoNode] = partial(gauss_blur, sigma=1.5),
    planes: PlanesT = None,
) -> ConstantFormatVideoNode:

    assert check_variable(clip, unsharpen)

    if callable(blur):
        blur = blur(clip)

    assert check_variable(blur, unsharpen)
    check_ref_clip(clip, blur, unsharpen)

    return norm_expr([clip, blur], f'x y - {strength} * x +', planes, func=unsharpen)