@scrypted/openvino 0.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/plugin.zip +0 -0
- package/package.json +44 -0
package/README.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# OpenVINO Object Detection for Scrypted
|
|
2
|
+
|
|
3
|
+
This plugin adds object detection capabilities to any camera in Scrypted. Having a fast GPU and CPU is highly recommended.
|
|
4
|
+
|
|
5
|
+
The OpenVINO Plugin should only be used if you are a Scrypted NVR user. It will provide no
|
|
6
|
+
benefits to HomeKit, which does its own detection processing.
|
package/dist/plugin.zip
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@scrypted/openvino",
|
|
3
|
+
"description": "Scrypted OpenVINO Object Detection",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"scrypted",
|
|
6
|
+
"plugin",
|
|
7
|
+
"openvino",
|
|
8
|
+
"motion",
|
|
9
|
+
"object",
|
|
10
|
+
"detect",
|
|
11
|
+
"detection",
|
|
12
|
+
"people",
|
|
13
|
+
"person"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"scrypted-setup-project": "scrypted-setup-project",
|
|
17
|
+
"prescrypted-setup-project": "scrypted-package-json",
|
|
18
|
+
"build": "scrypted-webpack",
|
|
19
|
+
"prepublishOnly": "NODE_ENV=production scrypted-webpack",
|
|
20
|
+
"prescrypted-vscode-launch": "scrypted-webpack",
|
|
21
|
+
"scrypted-vscode-launch": "scrypted-deploy-debug",
|
|
22
|
+
"scrypted-deploy-debug": "scrypted-deploy-debug",
|
|
23
|
+
"scrypted-debug": "scrypted-debug",
|
|
24
|
+
"scrypted-deploy": "scrypted-deploy",
|
|
25
|
+
"scrypted-readme": "scrypted-readme",
|
|
26
|
+
"scrypted-package-json": "scrypted-package-json"
|
|
27
|
+
},
|
|
28
|
+
"scrypted": {
|
|
29
|
+
"name": "OpenVINO Object Detection",
|
|
30
|
+
"pluginDependencies": [
|
|
31
|
+
"@scrypted/objectdetector"
|
|
32
|
+
],
|
|
33
|
+
"runtime": "python",
|
|
34
|
+
"type": "API",
|
|
35
|
+
"interfaces": [
|
|
36
|
+
"BufferConverter",
|
|
37
|
+
"ObjectDetection"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@scrypted/sdk": "file:../../sdk"
|
|
42
|
+
},
|
|
43
|
+
"version": "0.1.13"
|
|
44
|
+
}
|