Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. class ImageClassifier:
  2. def __init__(self, database):
  3. pass
  4.  
  5. def __str__(self):
  6. pass
  7.  
  8. @staticmethod
  9. def createDatabase(imageFolder, databasename):
  10. pass
  11.  
  12. def openDatabase(self):
  13. pass
  14.  
  15. @staticmethod
  16. def normalizeBinary(image):
  17. pass
  18.  
  19. @staticmethod
  20. def normalizeNot(image):
  21. pass
  22.  
  23. def normalizeDatabase(self, normFunction):
  24. pass
  25.  
  26. def classifyImage(self, img, normFunction):
  27. pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement