Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export const collectionBlocks: { 'blocks': CollectionBlockType,
'edgeDetector': {'label': 'Edge Detector'},
'erosion': {'label': 'Erosion'},
'faceDetector': {'label': 'Face Detector'},
'imageInvert': {'label': 'Image Invert'},
'imageRead': {'label': 'Image Read'},
'screen': { 'label': 'Screen' },
'threshold': {'label': 'Threshold'},
Expand Down Expand Up @@ -76,6 +77,7 @@ export const collectionBlocks: { 'blocks': CollectionBlockType,
'edgeDetector': {'label': 'Edge Detector'},
'erosion': {'label': 'Erosion'},
'faceDetector': {'label': 'Face Detector'},
'imageInvert': {'label': 'Image Invert'},
'threshold': {'label': 'Threshold'},
}
},
Expand Down Expand Up @@ -159,6 +161,8 @@ export function getCollectionBlock(name: string) {
return import('./opencv/FaceDetector.json');
case 'drivers.opencv.imageRead':
return import('./opencv/ImageRead.json');
case 'processing.opencv.imageInvert':
return import('./opencv/ImageInvert.json');
case 'drivers.opencv.screen':
return import('./opencv/Screen.json');
case 'processing.opencv.threshold':
Expand Down
Loading