-
Notifications
You must be signed in to change notification settings - Fork 0
/
_TestIS.py
38 lines (32 loc) · 1.17 KB
/
_TestIS.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from wai.common.cli.options import TypedOption
from wai.annotations.core.component import SinkComponent
from wai.annotations.domain.image.segmentation import ImageSegmentationInstance
OUTPUT_FILENAME = "filename"
OUTPUT_DIMENSIONS = "dimensions"
OUTPUT_LABELS = "labels"
OUTPUTS = [
OUTPUT_FILENAME,
OUTPUT_DIMENSIONS,
OUTPUT_LABELS,
]
class TestIS(SinkComponent[ImageSegmentationInstance]):
output: str = TypedOption(
"--output",
type=str,
default=OUTPUT_FILENAME,
help="the information to output: %s" % "|".join(OUTPUTS)
)
def consume_element(self, element: ImageSegmentationInstance):
"""
Consumes instances.
"""
if self.output == OUTPUT_FILENAME:
self.logger.info(element.data.filename)
elif self.output == OUTPUT_DIMENSIONS:
self.logger.info("%d,%d" % (element.data.width, element.data.height))
elif self.output == OUTPUT_LABELS:
self.logger.info(str(element.annotations.labels))
else:
raise Exception("Unknown output type (%s): %s" % ("|".join(OUTPUTS), self.output))
def finish(self):
self.logger.info("finished")