Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from enum import Enum
2
3
4class DownsampleScale(Enum):
5 X2 = "X2"
6 X4 = "X4"
7
8
9class DownsampleMethod(Enum):
10 DEFAULT = "default"
11 UNKNOWN = "unknown"
12
13