MetaPKLot-Dataset / tools /ParkingSpacesMarker /AbstractDatasetFileReader.py
LoanMaikon's picture
Add files using upload-large-folder tool
07444d1 verified
Raw
History Blame Contribute Delete
403 Bytes
from AbstractFileHandler import AbstractFileHandler
class AbstractDatasetFileReader(AbstractFileHandler):
def getXMLPathFromJPGPKLot(self, jpgPath):
raise NotImplementedError("Abstract Class")
def readParkingSpacesPositions(self, path):
raise NotImplementedError("Abstract Class")
def readAllParkingSpacesInfo(self, path):
raise NotImplementedError("Abstract Class")