Detection.py 220 B

123456789101112131415161718192021222324252627282930313233343536
  1. # -*- coding:utf-8 -*-
  2. import numpy as np
  3. class Detection:
  4. def __init__(self):
  5. ...
  6. def predict(self,image:np.array):
  7. return
  8. Detection = Detection()
  9. # Detection.predict()