mirror of
https://github.com/koush/scrypted.git
synced 2026-06-12 21:40:26 +01:00
* rknn: initial rockchip object detector implementation * update package-lock.json * checkpoint fork-based implementation * Revert "checkpoint fork-based implementation" This reverts commit9cc0493699. * Revert "Revert "checkpoint fork-based implementation"" This reverts commitb6367f1d27. * checkpoint new fork-based implementation * checkpoint shared memory implementation * Revert "checkpoint shared memory implementation" This reverts commit66f0c59421. * Revert "checkpoint new fork-based implementation" This reverts commit158d64bea1. * Revert "Revert "Revert "checkpoint fork-based implementation""" This reverts commitee86f383cb. * Revert "Revert "checkpoint fork-based implementation"" This reverts commitb6367f1d27. * Revert "checkpoint fork-based implementation" This reverts commit9cc0493699. * refactor with ThreadPoolExecutors * tell each runtime to use all cores * Revert "tell each runtime to use all cores" This reverts commitf7d0ce76f7. * only install librknnrt.so if docker or lxc * relax cpu requirements, update readme * test rknn runtime on startup
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@scrypted/rknn",
|
|
"description": "Scrypted Rockchip NPU Object Detection",
|
|
"keywords": [
|
|
"scrypted",
|
|
"plugin",
|
|
"rknn",
|
|
"rockchip",
|
|
"npu",
|
|
"motion",
|
|
"object",
|
|
"detect",
|
|
"detection",
|
|
"people",
|
|
"person"
|
|
],
|
|
"scripts": {
|
|
"scrypted-setup-project": "scrypted-setup-project",
|
|
"prescrypted-setup-project": "scrypted-package-json",
|
|
"build": "scrypted-webpack",
|
|
"prepublishOnly": "NODE_ENV=production scrypted-webpack",
|
|
"prescrypted-vscode-launch": "scrypted-webpack",
|
|
"scrypted-vscode-launch": "scrypted-deploy-debug",
|
|
"scrypted-deploy-debug": "scrypted-deploy-debug",
|
|
"scrypted-debug": "scrypted-debug",
|
|
"scrypted-deploy": "scrypted-deploy",
|
|
"scrypted-readme": "scrypted-readme",
|
|
"scrypted-package-json": "scrypted-package-json"
|
|
},
|
|
"scrypted": {
|
|
"name": "Rockchip NPU Object Detection",
|
|
"pluginDependencies": [
|
|
"@scrypted/objectdetector"
|
|
],
|
|
"runtime": "python",
|
|
"pythonVersion": {
|
|
"default": "3.10"
|
|
},
|
|
"type": "API",
|
|
"interfaces": [
|
|
"ObjectDetection",
|
|
"ObjectDetectionPreview"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@scrypted/sdk": "file:../../sdk"
|
|
},
|
|
"version": "0.0.1"
|
|
}
|