mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-07-07 21:42:09 -07:00
8 lines
No EOL
144 B
Python
8 lines
No EOL
144 B
Python
from enum import IntEnum, IntEnum
|
|
|
|
class EInterpolation(IntEnum):
|
|
NEAREST = 0
|
|
LINEAR = 1
|
|
CUBIC = 2
|
|
LANCZOS3 = 3
|
|
LANCZOS4 = 4 |