made "interface" abstract
This commit is contained in:
parent
b18dfaf891
commit
54f3a41ebc
|
|
@ -1,6 +1,8 @@
|
||||||
|
from abc import ABC, abstractmethod
|
||||||
|
|
||||||
|
class ClassifierInterface(ABC):
|
||||||
class ClassifierInterface:
|
@abstractmethod
|
||||||
def tagLayer(self, layers):
|
def tagLayer(self, layers):
|
||||||
"""takes layers, returns list (len(), same as input) of lists with tags for corresponfing layers"""
|
"""takes filled contours of one frame, returns list (len(), same as input)
|
||||||
pass
|
of lists with tags for corresponfing contours"""
|
||||||
|
pass
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue