mirror of
https://github.com/iperov/DeepFaceLive.git
synced 2024-12-25 15:31:13 -08:00
8 lines
144 B
Python
8 lines
144 B
Python
from enum import IntEnum, IntEnum
|
|
|
|
class EInterpolation(IntEnum):
|
|
NEAREST = 0
|
|
LINEAR = 1
|
|
CUBIC = 2
|
|
LANCZOS3 = 3
|
|
LANCZOS4 = 4 |