scale ¶
Functions:
-
get_lowest_value
–Returns the lowest value for the specified bit depth, or bit depth of the clip/format specified.
-
get_lowest_values
–Get the lowest values of all planes of a specified format.
-
get_neutral_value
–Returns the neutral point value (e.g. as used by std.MakeDiff) for the specified bit depth,
-
get_neutral_values
–Get the neutral values of all planes of a specified format.
-
get_peak_value
–Returns the peak value for the specified bit depth, or bit depth of the clip/format specified.
-
get_peak_values
–Get the peak values of all planes of a specified format.
-
scale_delta
–Converts the value to the specified bit depth, or bit depth of the clip/format specified.
-
scale_mask
–Converts the value to the specified bit depth, or bit depth of the clip/format specified.
-
scale_value
–Converts the value to the specified bit depth, or bit depth of the clip/format specified.
get_lowest_value ¶
get_lowest_value(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
chroma: bool = False,
range_in: ColorRangeLike | None = None,
family: ColorFamily | None = None,
) -> float
Returns the lowest value for the specified bit depth, or bit depth of the clip/format specified.
Parameters:
-
clip_or_depth
¶int | VideoFormatLike | HoldsVideoFormat
) –Input bit depth, or clip, frame, format from where to get it.
-
chroma
¶bool
, default:False
) –Whether to get luma (default) or chroma plane value.
-
range_in
¶ColorRangeLike | None
, default:None
) –Whether to get limited or full range lowest value.
-
family
¶ColorFamily | None
, default:None
) –Which color family to assume for calculations.
Returns:
-
float
–Lowest possible value.
Source code in vstools/utils/scale.py
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 199 200 201 202 |
|
get_lowest_values ¶
get_lowest_values(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
range_in: ColorRangeLike | None = None,
family: ColorFamily | None = None,
mask: bool = False,
) -> list[float]
Get the lowest values of all planes of a specified format.
Source code in vstools/utils/scale.py
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
|
get_neutral_value ¶
get_neutral_value(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
) -> float
Returns the neutral point value (e.g. as used by std.MakeDiff) for the specified bit depth, or bit depth of the clip/format specified.
Parameters:
-
clip_or_depth
¶int | VideoFormatLike | HoldsVideoFormat
) –Input bit depth, or clip, frame, format from where to get it.
Returns:
-
float
–Neutral value.
Source code in vstools/utils/scale.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
|
get_neutral_values ¶
get_neutral_values(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
) -> list[float]
Get the neutral values of all planes of a specified format.
Source code in vstools/utils/scale.py
246 247 248 249 250 251 252 |
|
get_peak_value ¶
get_peak_value(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
chroma: bool = False,
range_in: ColorRangeLike | None = None,
family: ColorFamily | None = None,
) -> float
Returns the peak value for the specified bit depth, or bit depth of the clip/format specified.
Parameters:
-
clip_or_depth
¶int | VideoFormatLike | HoldsVideoFormat
) –Input bit depth, or clip, frame, format from where to get it.
-
chroma
¶bool
, default:False
) –Whether to get luma (default) or chroma plane value.
-
range_in
¶ColorRangeLike | None
, default:None
) –Whether to get limited or full range peak value.
-
family
¶ColorFamily | None
, default:None
) –Which color family to assume for calculations.
Returns:
-
float
–Highest possible value.
Source code in vstools/utils/scale.py
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
|
get_peak_values ¶
get_peak_values(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
range_in: ColorRangeLike | None = None,
family: ColorFamily | None = None,
mask: bool = False,
) -> list[float]
Get the peak values of all planes of a specified format.
Source code in vstools/utils/scale.py
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
scale_delta ¶
scale_delta(
value: int | float,
input_depth: int | VideoFormatLike | HoldsVideoFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat,
range_in: ColorRangeLike | None = None,
range_out: ColorRangeLike | None = None,
) -> int | float
Converts the value to the specified bit depth, or bit depth of the clip/format specified. Uses the clip's range (if only one clip is passed) for both depths. Intended for filter thresholds.
Parameters:
-
value
¶int | float
) –Value to scale.
-
input_depth
¶int | VideoFormatLike | HoldsVideoFormat
) –Input bit depth, or clip, frame, format from where to get it.
-
output_depth
¶int | VideoFormatLike | HoldsVideoFormat
) –Output bit depth, or clip, frame, format from where to get it.
-
range_in
¶ColorRangeLike | None
, default:None
) –Color range of the input value
-
range_out
¶ColorRangeLike | None
, default:None
) –Color range of the desired output.
Returns:
Source code in vstools/utils/scale.py
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 |
|
scale_mask ¶
scale_mask(
value: int | float,
input_depth: int | VideoFormatLike | HoldsVideoFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat,
) -> int | float
Converts the value to the specified bit depth, or bit depth of the clip/format specified. Intended for mask clips which are always full range.
Parameters:
-
value
¶int | float
) –Value to scale.
-
input_depth
¶int | VideoFormatLike | HoldsVideoFormat
) –Input bit depth, or clip, frame, format from where to get it.
-
output_depth
¶int | VideoFormatLike | HoldsVideoFormat
) –Output bit depth, or clip, frame, format from where to get it.
Returns:
Source code in vstools/utils/scale.py
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
scale_value ¶
scale_value(
value: int | float,
input_depth: int | VideoFormatLike | HoldsVideoFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat,
range_in: ColorRangeLike | None = None,
range_out: ColorRangeLike | None = None,
scale_offsets: bool = True,
chroma: bool = False,
family: ColorFamily | None = None,
) -> int | float
Converts the value to the specified bit depth, or bit depth of the clip/format specified.
Parameters:
-
value
¶int | float
) –Value to scale.
-
input_depth
¶int | VideoFormatLike | HoldsVideoFormat
) –Input bit depth, or clip, frame, format from where to get it.
-
output_depth
¶int | VideoFormatLike | HoldsVideoFormat
) –Output bit depth, or clip, frame, format from where to get it.
-
range_in
¶ColorRangeLike | None
, default:None
) –Color range of the input value
-
range_out
¶ColorRangeLike | None
, default:None
) –Color range of the desired output.
-
scale_offsets
¶bool
, default:True
) –Whether or not to apply & map YUV zero-point offsets. Set to True when converting absolute color values. Set to False when converting color deltas. Only relevant if integer formats are involved.
-
chroma
¶bool
, default:False
) –Whether or not to treat values as chroma values instead of luma.
-
family
¶ColorFamily | None
, default:None
) –Which color family to assume for calculations.
Returns:
Source code in vstools/utils/scale.py
23 24 25 26 27 28 29 30 31 32 33 34 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 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 |
|