Video-Summary/Application/Classifiers/ClassifierInterface.py

6 lines
181 B
Python
Raw Normal View History

2020-10-23 22:14:43 +00:00
class ClassifierInterface:
2020-11-01 16:43:05 +00:00
def tagLayer(self, layers):
2020-10-23 22:14:43 +00:00
"""takes layers, returns list (len(), same as input) of lists with tags for corresponfing layers"""
pass