├── .DS_Store ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── db ├── .git_ignore └── empty ├── examples └── stream.py ├── get_models.sh ├── images └── README.md ├── install_as_service.sh ├── known_faces └── README.md ├── make_changelog.sh ├── make_tag.sh ├── mlapi.py ├── mlapi.service ├── mlapi_dbuser.py ├── mlapi_face_train.py ├── mlapi_logrot.sh ├── mlapiconfig.ini ├── modules ├── .gitignore ├── __init__.py ├── common_params.py ├── db.py ├── log.py └── utils.py ├── requirements.txt ├── secrets.ini ├── tools └── config_edit.py └── unknown_faces └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GPLv3 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/README.md -------------------------------------------------------------------------------- /db/.git_ignore: -------------------------------------------------------------------------------- 1 | db.json 2 | -------------------------------------------------------------------------------- /db/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/examples/stream.py -------------------------------------------------------------------------------- /get_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/get_models.sh -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/images/README.md -------------------------------------------------------------------------------- /install_as_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/install_as_service.sh -------------------------------------------------------------------------------- /known_faces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/known_faces/README.md -------------------------------------------------------------------------------- /make_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/make_changelog.sh -------------------------------------------------------------------------------- /make_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/make_tag.sh -------------------------------------------------------------------------------- /mlapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/mlapi.py -------------------------------------------------------------------------------- /mlapi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/mlapi.service -------------------------------------------------------------------------------- /mlapi_dbuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/mlapi_dbuser.py -------------------------------------------------------------------------------- /mlapi_face_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/mlapi_face_train.py -------------------------------------------------------------------------------- /mlapi_logrot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/mlapi_logrot.sh -------------------------------------------------------------------------------- /mlapiconfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/mlapiconfig.ini -------------------------------------------------------------------------------- /modules/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | 4 | -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/common_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/modules/common_params.py -------------------------------------------------------------------------------- /modules/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/modules/db.py -------------------------------------------------------------------------------- /modules/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/modules/log.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/modules/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/requirements.txt -------------------------------------------------------------------------------- /secrets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/secrets.ini -------------------------------------------------------------------------------- /tools/config_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/tools/config_edit.py -------------------------------------------------------------------------------- /unknown_faces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/mlapi/HEAD/unknown_faces/README.md --------------------------------------------------------------------------------