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 | VideoFormatT | HoldsVideoFormatT,
chroma: bool = False,
range_in: ColorRangeT | 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 | VideoFormatT | HoldsVideoFormatT
) –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
¶ColorRangeT | 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
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 |
|
get_lowest_values ¶
get_lowest_values(
clip_or_depth: int | VideoFormatT | HoldsVideoFormatT,
range_in: ColorRangeT | None = None,
family: ColorFamily | None = None,
) -> Sequence[float]
Get the lowest values of all planes of a specified format.
Source code
194 195 196 197 198 199 200 201 202 203 204 205 |
|
get_neutral_value ¶
get_neutral_value(
clip_or_depth: int | VideoFormatT | HoldsVideoFormatT,
) -> 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 | VideoFormatT | HoldsVideoFormatT
) –Input bit depth, or clip, frame, format from where to get it.
Returns:
-
float
–Neutral value.
Source code
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
|
get_neutral_values ¶
get_neutral_values(
clip_or_depth: int | VideoFormatT | HoldsVideoFormatT,
) -> Sequence[float]
Get the neutral values of all planes of a specified format.
Source code
226 227 228 229 230 |
|
get_peak_value ¶
get_peak_value(
clip_or_depth: int | VideoFormatT | HoldsVideoFormatT,
chroma: bool = False,
range_in: ColorRangeT | 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 | VideoFormatT | HoldsVideoFormatT
) –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
¶ColorRangeT | 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
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
|
get_peak_values ¶
get_peak_values(
clip_or_depth: int | VideoFormatT | HoldsVideoFormatT,
range_in: ColorRangeT | None = None,
family: ColorFamily | None = None,
) -> Sequence[float]
Get the peak values of all planes of a specified format.
Source code
270 271 272 273 274 275 276 277 278 279 280 281 |
|
scale_delta ¶
scale_delta(
value: int | float,
input_depth: int | VideoFormatT | HoldsVideoFormatT,
output_depth: int | VideoFormatT | HoldsVideoFormatT,
range_in: ColorRangeT | None = None,
range_out: ColorRangeT | 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 | VideoFormatT | HoldsVideoFormatT
) –Input bit depth, or clip, frame, format from where to get it.
-
output_depth
¶int | VideoFormatT | HoldsVideoFormatT
) –Output bit depth, or clip, frame, format from where to get it.
-
range_in
¶ColorRangeT | None
, default:None
) –Color range of the input value
-
range_out
¶ColorRangeT | None
, default:None
) –Color range of the desired output.
Returns:
Source code
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 |
|
scale_mask ¶
scale_mask(
value: int | float,
input_depth: int | VideoFormatT | HoldsVideoFormatT,
output_depth: int | VideoFormatT | HoldsVideoFormatT,
) -> 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 | VideoFormatT | HoldsVideoFormatT
) –Input bit depth, or clip, frame, format from where to get it.
-
output_depth
¶int | VideoFormatT | HoldsVideoFormatT
) –Output bit depth, or clip, frame, format from where to get it.
Returns:
Source code
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
|
scale_value ¶
scale_value(
value: int | float,
input_depth: int | VideoFormatT | HoldsVideoFormatT,
output_depth: int | VideoFormatT | HoldsVideoFormatT,
range_in: ColorRangeT | None = None,
range_out: ColorRangeT | 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 | VideoFormatT | HoldsVideoFormatT
) –Input bit depth, or clip, frame, format from where to get it.
-
output_depth
¶int | VideoFormatT | HoldsVideoFormatT
) –Output bit depth, or clip, frame, format from where to get it.
-
range_in
¶ColorRangeT | None
, default:None
) –Color range of the input value
-
range_out
¶ColorRangeT | 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
20 21 22 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 |
|