human/render/base_render.py
2024-10-21 19:55:04 +08:00

19 lines
254 B
Python

#encoding = utf8
from abc import ABC, abstractmethod
class BaseRender(ABC):
def __init__(self, start):
self._start = start
@abstractmethod
def put(self, frame):
pass
@abstractmethod
def stop(self):
pass