ImageClassifier.py 215 B

12345
  1. from py.Session import MotionImage
  2. class AbstractImageClassifier():
  3. def evaluate(self, motion_img: MotionImage, display=False) -> int:
  4. raise NotImplementedError("Please implement evaluate(motion_img)!")