Spaces:
Running
Running
from abc import ABC, abstractmethod | |
class CensoringMethod(ABC): | |
def apply(self, frame, bbox): | |
pass |
from abc import ABC, abstractmethod | |
class CensoringMethod(ABC): | |
def apply(self, frame, bbox): | |
pass |