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 | HoldsNumpyFormat,
chroma: bool = False,
range_in: RangeLike | None = None,
family: VideoFormatLike
| HoldsVideoFormat
| HoldsNumpyFormat
| 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 | HoldsNumpyFormat) –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¶RangeLike | None, default:None) –Whether to get limited or full range lowest value.
-
(family¶VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat | ColorFamily | None, default:None) –Which color family to assume for calculations.
Returns:
-
float–Lowest possible value.
Source code in vstools/utils/scale.py
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 294 295 296 | |
get_lowest_values ¶
get_lowest_values(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
range_in: RangeLike | None = None,
family: VideoFormatLike
| HoldsVideoFormat
| HoldsNumpyFormat
| 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
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | |
get_neutral_value ¶
get_neutral_value(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
) -> 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 | HoldsNumpyFormat) –Input bit depth, or clip, frame, format from where to get it.
Returns:
-
float–Neutral value.
Source code in vstools/utils/scale.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | |
get_neutral_values ¶
get_neutral_values(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
) -> list[float]
Get the neutral values of all planes of a specified format.
Source code in vstools/utils/scale.py
340 341 342 343 344 345 346 | |
get_peak_value ¶
get_peak_value(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
chroma: bool = False,
range_in: RangeLike | None = None,
family: VideoFormatLike
| HoldsVideoFormat
| HoldsNumpyFormat
| 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 | HoldsNumpyFormat) –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¶RangeLike | None, default:None) –Whether to get limited or full range peak value.
-
(family¶VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat | ColorFamily | None, default:None) –Which color family to assume for calculations.
Returns:
-
float–Highest possible value.
Source code in vstools/utils/scale.py
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | |
get_peak_values ¶
get_peak_values(
clip_or_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
range_in: RangeLike | None = None,
family: VideoFormatLike
| HoldsVideoFormat
| HoldsNumpyFormat
| 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
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | |
scale_delta ¶
scale_delta(
value: float,
input_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
range_in: RangeLike | None = None,
range_out: RangeLike | None = None,
) -> float
scale_delta(
value: NDArray[Any],
input_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
range_in: RangeLike | None = None,
range_out: RangeLike | None = None,
) -> NDArray[Any]
scale_delta(
value: float | NDArray[Any],
input_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
range_in: RangeLike | None = None,
range_out: RangeLike | None = None,
) -> float | NDArray[Any]
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¶float | NDArray[Any]) –Value to scale. Can be a single float or a NumPy array.
-
(input_depth¶int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat) –Input bit depth, or clip, frame, format from where to get it.
-
(output_depth¶int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat) –Output bit depth, or clip, frame, format from where to get it.
-
(range_in¶RangeLike | None, default:None) –Color range of the input value
-
(range_out¶RangeLike | None, default:None) –Color range of the desired output.
Returns:
Source code in vstools/utils/scale.py
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | |
scale_mask ¶
scale_mask(
value: float,
input_depth: int | VideoFormatLike | HoldsVideoFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat,
) -> float
scale_mask(
value: NDArray[Any],
input_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
) -> NDArray[Any]
scale_mask(
value: float | NDArray[Any],
input_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
) -> float | NDArray[Any]
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¶float | NDArray[Any]) –Value to scale. Can be a single float or a NumPy array.
-
(input_depth¶int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat) –Input bit depth, or clip, frame, format from where to get it.
-
(output_depth¶int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat) –Output bit depth, or clip, frame, format from where to get it.
Returns:
Source code in vstools/utils/scale.py
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | |
scale_value ¶
scale_value(
value: float,
input_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
range_in: RangeLike | None = None,
range_out: RangeLike | None = None,
scale_offsets: bool = True,
chroma: bool = False,
family: VideoFormatLike
| HoldsVideoFormat
| HoldsNumpyFormat
| ColorFamily
| None = None,
) -> float
scale_value(
value: NDArray[Any],
input_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
range_in: RangeLike | None = None,
range_out: RangeLike | None = None,
scale_offsets: bool = True,
chroma: bool = False,
family: VideoFormatLike
| HoldsVideoFormat
| HoldsNumpyFormat
| ColorFamily
| None = None,
) -> NDArray[Any]
scale_value(
value: float | NDArray[Any],
input_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
output_depth: int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat,
range_in: RangeLike | None = None,
range_out: RangeLike | None = None,
scale_offsets: bool = True,
chroma: bool = False,
family: VideoFormatLike
| HoldsVideoFormat
| HoldsNumpyFormat
| ColorFamily
| None = None,
) -> float | NDArray[Any]
Converts the value to the specified bit depth, or bit depth of the clip/format specified.
Parameters:
-
(value¶float | NDArray[Any]) –Value to scale. Can be a single float or a NumPy array.
-
(input_depth¶int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat) –Input bit depth, or clip, frame, format from where to get it.
-
(output_depth¶int | VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat) –Output bit depth, or clip, frame, format from where to get it.
-
(range_in¶RangeLike | None, default:None) –Color range of the input value
-
(range_out¶RangeLike | 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¶VideoFormatLike | HoldsVideoFormat | HoldsNumpyFormat | ColorFamily | None, default:None) –Which color family to assume for calculations.
Returns:
Source code in vstools/utils/scale.py
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 | |