Spring-0's picture
Synced repo using 'sync_with_huggingface' Github Action
2012550 verified
raw
history blame contribute delete
131 Bytes
from abc import ABC, abstractmethod
class CensoringMethod(ABC):
@abstractmethod
def apply(self, frame, bbox):
pass