descale
DescaleTarget
dataclass
Bases: TargetVals
Basically an entirely self contained rescaling utility class that can do pretty much everything.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
height
|
float | int
|
Height to be descaled to. |
required |
kernel
|
KernelT
|
The kernel used for descaling. |
Catrom
|
upscaler
|
Doubler | ScalerT
|
Either a vodesfunc doubler or any scaler from vsscale used to upscale/double the descaled clip. |
NNEDI_Doubler()
|
downscaler
|
ScalerT
|
Any kernel or scaler used for downscaling the upscaled/doubled clip back to input res. |
Catrom
|
base_height
|
int | None
|
Needed for fractional descales. |
None
|
width
|
float | int | None
|
Width to be descaled to. |
None
|
base_width
|
int | None
|
Needed for fractional descales. (will be calculated if None) |
None
|
shift
|
tuple[float, float]
|
Shifts to apply during the descaling and reupscaling. |
(0, 0)
|
do_post_double
|
Callable[[VideoNode], VideoNode] | None
|
A function that's called on the doubled clip. Can be used to do sensitive processing on a bigger clip. (e. g. Dehaloing) |
None
|
do_post_descale
|
Callable[[VideoNode], VideoNode] | None
|
Same thing as do_post_double but instead on the descaled clip. |
None
|
credit_mask
|
VideoNode | bool | None
|
Can be used to pass a mask that'll be used or False to disable error masking. |
None
|
credit_mask_thr
|
float
|
The error threshold of the automatically generated credit mask. |
0.04
|
credit_mask_bh
|
bool
|
Generates an error mask based on a descale using the base_height. For some reason had better results with this on some shows. |
False
|
line_mask
|
VideoNode | bool | Sequence[Union[EdgeDetectT, ScalerT, float | None]] | GenericVSFunction | None
|
Can be used to pass a mask that'll be used or False to disable line masking. You can also pass a list containing edgemask function, scaler and thresholds to generate the mask on the doubled clip for potential better results. If None is passed to the first threshold then the mask won't be binarized. It will also run a Maximum and Inflate call on the mask. Example: |
None
|
field_based
|
FieldBasedT | None
|
Per-field descaling. Must be a FieldBased object. For example, |
None
|
border_handling
|
int
|
Adjust the way the clip is padded internally during the scaling process. Accepted values are: 0: Assume the image was resized with mirror padding. 1: Assume the image was resized with zero padding. 2: Assume the image was resized with extend padding, where the outermost row was extended infinitely far. Defaults to 0. |
0
|
border_radius
|
int | None
|
Radius for the border mask. Only used when border_handling is set to 1 or 2. Defaults to kernel radius if possible, else 2. |
None
|
Source code in vodesfunc/descale.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
|
generate_clips(clip)
Generates descaled and rescaled clips of the given input clip
Parameters:
Name | Type | Description | Default |
---|---|---|---|
clip
|
VideoNode
|
Clip to descale and rescale |
required |
Source code in vodesfunc/descale.py
get_diff(clip)
Returns a clip used for diff measuring ala getnative
Parameters:
Name | Type | Description | Default |
---|---|---|---|
clip
|
VideoNode
|
Clip to compare the rescaled clip to |
required |
Returns:
Type | Description |
---|---|
VideoNode
|
Diff clip |
Source code in vodesfunc/descale.py
get_upscaled(clip, chroma=None)
Generates and returns the fully upscaled & masked & what not clip
Source code in vodesfunc/descale.py
MixedRescale
Source code in vodesfunc/descale.py
__init__(src, *targets)
A naive per-frame diff approach of trying to get the best descale. Credits to Setsu for most of this class.
Example usage:
t1 = DT(847.1, Bilinear(), base_height=848)
t2 = DescaleTarget(843.75, Bilinear(), base_height=846)
rescaled = MixedRescale(clip, t1, t2)
out(rescaled.final)
out(rescaled.line_mask)