Update canny_block.py
Browse files- canny_block.py +3 -1
canny_block.py
CHANGED
|
@@ -18,7 +18,9 @@ class CannyBlock(ModularPipelineBlocks):
|
|
| 18 |
@property
|
| 19 |
def expected_components(self):
|
| 20 |
return [
|
| 21 |
-
ComponentSpec(
|
|
|
|
|
|
|
| 22 |
]
|
| 23 |
|
| 24 |
@property
|
|
|
|
| 18 |
@property
|
| 19 |
def expected_components(self):
|
| 20 |
return [
|
| 21 |
+
ComponentSpec(
|
| 22 |
+
name="canny_annotator", type_hint=CannyDetector, default_creation_method="init"
|
| 23 |
+
),
|
| 24 |
]
|
| 25 |
|
| 26 |
@property
|