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 8b92524 commit 77c4979Copy full SHA for 77c4979
colour_checker_detection/detection/segmentation.py
@@ -41,6 +41,7 @@
41
)
42
from colour.models import cctf_encoding
43
from colour.utilities import (
44
+ MixinDataclassIterable,
45
Structure,
46
as_float_array,
47
as_int_array,
@@ -149,7 +150,7 @@
149
150
151
152
@dataclass
-class ColourCheckersDetectionData:
153
+class ColourCheckersDetectionData(MixinDataclassIterable):
154
"""
155
Colour checkers detection data used for plotting, debugging and further
156
analysis.
@@ -174,7 +175,7 @@ class ColourCheckersDetectionData:
174
175
176
177
-class ColourCheckerSwatchesData:
178
+class ColourCheckerSwatchesData(MixinDataclassIterable):
179
180
Colour checker swatches data used for plotting, debugging and further
181
0 commit comments