We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de5b9ca commit dcb61c0Copy full SHA for dcb61c0
examples/visual_inspection_ai.py
@@ -1,8 +1,8 @@
1
import json
2
3
-# いろいろなフォーマットを受け取って、VisualInspectionAiのjsonlで出力するのが責務
4
-
5
+# visualInspectionAiの一要素として表せる図形の情報。
+# jsonl型として出力するのが責務
6
class VisualInspectionAiFigure:
7
def __init__(self, vertex, project_type):
8
self.vertex = vertex
@@ -52,6 +52,8 @@ def __make_vi_annotations_jsonl(self) -> dict:
52
}
53
54
55
+# いろいろなフォーマットを受け取って、VisualInspectionAiのjsonlで出力するのが責務
56
+
57
class VisualInspectionAi:
58
def __init__(self, figures):
59
self.figures = figures
0 commit comments