node-red-contrib-post-object-detection
Version:
A Node-RED custom node that processes the Object Detection results
25 lines (24 loc) • 527 B
TypeScript
type NodeRed = {
nodes: NodeRedNodes;
};
type NodeRedWire = {
[index: number]: string;
};
type NodeRedWires = {
[index: number]: NodeRedWire;
};
type NodeRedProperties = {
id: string;
type: string;
name: string;
classesURL: string;
iou: string;
minScore: string;
wires: NodeRedWires;
};
type NodeRedNodes = {
createNode(node: any, props: NodeRedProperties): void;
registerType(type: string, ctor: any): void;
};
declare const _default: (RED: NodeRed) => void;
export = _default;