├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support-request.md ├── containers │ ├── fedora-common │ │ └── build.sh │ └── fedora-template │ │ ├── Dockerfile │ │ └── build.sh └── workflows │ ├── clang-format.yml │ ├── docker-build.yml │ └── main.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── ci ├── ci_includes.cmd.in ├── ci_includes.sh.in ├── download-dlib-models.sh ├── forum-update-info.json ├── macos │ ├── change-rpath.py │ └── install-packagesbuild.sh ├── plugin.spec └── windows │ └── package-windows.cmd ├── cmake ├── ObsPluginHelpers.cmake └── bundle │ └── macos │ ├── Plugin-Info.plist.in │ └── entitlements.plist ├── data └── locale │ └── en-US.ini ├── doc ├── properties-ptz.md └── properties.md ├── installer ├── installer-Windows.iss.in └── installer-macOS.pkgproj.in ├── src ├── dummy-backend.cpp ├── dummy-backend.hpp ├── face-detector-base.cpp ├── face-detector-base.h ├── face-detector-dlib-cnn.cpp ├── face-detector-dlib-cnn.h ├── face-detector-dlib-hog-datagen.cpp ├── face-detector-dlib-hog.cpp ├── face-detector-dlib-hog.h ├── face-tracker-base.cpp ├── face-tracker-base.h ├── face-tracker-dlib.cpp ├── face-tracker-dlib.h ├── face-tracker-manager.cpp ├── face-tracker-manager.hpp ├── face-tracker-monitor.cpp ├── face-tracker-preset.cpp ├── face-tracker-preset.h ├── face-tracker-ptz.cpp ├── face-tracker-ptz.hpp ├── face-tracker.cpp ├── face-tracker.hpp ├── helper.cpp ├── helper.hpp ├── libvisca-thread.cpp ├── libvisca-thread.hpp ├── module-main.c ├── obsptz-backend.cpp ├── obsptz-backend.hpp ├── plugin-macros.h.in ├── ptz-backend.cpp ├── ptz-backend.hpp ├── source_list.cc ├── source_list.h ├── texture-object.cpp └── texture-object.h └── ui ├── face-tracker-dock-internal.hpp ├── face-tracker-dock.cpp ├── face-tracker-dock.hpp ├── face-tracker-widget.cpp ├── face-tracker-widget.hpp └── obsgui-helper.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.github/ISSUE_TEMPLATE/support-request.md -------------------------------------------------------------------------------- /.github/containers/fedora-common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.github/containers/fedora-common/build.sh -------------------------------------------------------------------------------- /.github/containers/fedora-template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.github/containers/fedora-template/Dockerfile -------------------------------------------------------------------------------- /.github/containers/fedora-template/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.github/containers/fedora-template/build.sh -------------------------------------------------------------------------------- /.github/workflows/clang-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.github/workflows/clang-format.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/README.md -------------------------------------------------------------------------------- /ci/ci_includes.cmd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ci/ci_includes.cmd.in -------------------------------------------------------------------------------- /ci/ci_includes.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ci/ci_includes.sh.in -------------------------------------------------------------------------------- /ci/download-dlib-models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ci/download-dlib-models.sh -------------------------------------------------------------------------------- /ci/forum-update-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ci/forum-update-info.json -------------------------------------------------------------------------------- /ci/macos/change-rpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ci/macos/change-rpath.py -------------------------------------------------------------------------------- /ci/macos/install-packagesbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ci/macos/install-packagesbuild.sh -------------------------------------------------------------------------------- /ci/plugin.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ci/plugin.spec -------------------------------------------------------------------------------- /ci/windows/package-windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ci/windows/package-windows.cmd -------------------------------------------------------------------------------- /cmake/ObsPluginHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/cmake/ObsPluginHelpers.cmake -------------------------------------------------------------------------------- /cmake/bundle/macos/Plugin-Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/cmake/bundle/macos/Plugin-Info.plist.in -------------------------------------------------------------------------------- /cmake/bundle/macos/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/cmake/bundle/macos/entitlements.plist -------------------------------------------------------------------------------- /data/locale/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/data/locale/en-US.ini -------------------------------------------------------------------------------- /doc/properties-ptz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/doc/properties-ptz.md -------------------------------------------------------------------------------- /doc/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/doc/properties.md -------------------------------------------------------------------------------- /installer/installer-Windows.iss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/installer/installer-Windows.iss.in -------------------------------------------------------------------------------- /installer/installer-macOS.pkgproj.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/installer/installer-macOS.pkgproj.in -------------------------------------------------------------------------------- /src/dummy-backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/dummy-backend.cpp -------------------------------------------------------------------------------- /src/dummy-backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/dummy-backend.hpp -------------------------------------------------------------------------------- /src/face-detector-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-detector-base.cpp -------------------------------------------------------------------------------- /src/face-detector-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-detector-base.h -------------------------------------------------------------------------------- /src/face-detector-dlib-cnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-detector-dlib-cnn.cpp -------------------------------------------------------------------------------- /src/face-detector-dlib-cnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-detector-dlib-cnn.h -------------------------------------------------------------------------------- /src/face-detector-dlib-hog-datagen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-detector-dlib-hog-datagen.cpp -------------------------------------------------------------------------------- /src/face-detector-dlib-hog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-detector-dlib-hog.cpp -------------------------------------------------------------------------------- /src/face-detector-dlib-hog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-detector-dlib-hog.h -------------------------------------------------------------------------------- /src/face-tracker-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-base.cpp -------------------------------------------------------------------------------- /src/face-tracker-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-base.h -------------------------------------------------------------------------------- /src/face-tracker-dlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-dlib.cpp -------------------------------------------------------------------------------- /src/face-tracker-dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-dlib.h -------------------------------------------------------------------------------- /src/face-tracker-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-manager.cpp -------------------------------------------------------------------------------- /src/face-tracker-manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-manager.hpp -------------------------------------------------------------------------------- /src/face-tracker-monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-monitor.cpp -------------------------------------------------------------------------------- /src/face-tracker-preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-preset.cpp -------------------------------------------------------------------------------- /src/face-tracker-preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-preset.h -------------------------------------------------------------------------------- /src/face-tracker-ptz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-ptz.cpp -------------------------------------------------------------------------------- /src/face-tracker-ptz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker-ptz.hpp -------------------------------------------------------------------------------- /src/face-tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker.cpp -------------------------------------------------------------------------------- /src/face-tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/face-tracker.hpp -------------------------------------------------------------------------------- /src/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/helper.cpp -------------------------------------------------------------------------------- /src/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/helper.hpp -------------------------------------------------------------------------------- /src/libvisca-thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/libvisca-thread.cpp -------------------------------------------------------------------------------- /src/libvisca-thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/libvisca-thread.hpp -------------------------------------------------------------------------------- /src/module-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/module-main.c -------------------------------------------------------------------------------- /src/obsptz-backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/obsptz-backend.cpp -------------------------------------------------------------------------------- /src/obsptz-backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/obsptz-backend.hpp -------------------------------------------------------------------------------- /src/plugin-macros.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/plugin-macros.h.in -------------------------------------------------------------------------------- /src/ptz-backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/ptz-backend.cpp -------------------------------------------------------------------------------- /src/ptz-backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/ptz-backend.hpp -------------------------------------------------------------------------------- /src/source_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/source_list.cc -------------------------------------------------------------------------------- /src/source_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/source_list.h -------------------------------------------------------------------------------- /src/texture-object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/texture-object.cpp -------------------------------------------------------------------------------- /src/texture-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/src/texture-object.h -------------------------------------------------------------------------------- /ui/face-tracker-dock-internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ui/face-tracker-dock-internal.hpp -------------------------------------------------------------------------------- /ui/face-tracker-dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ui/face-tracker-dock.cpp -------------------------------------------------------------------------------- /ui/face-tracker-dock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ui/face-tracker-dock.hpp -------------------------------------------------------------------------------- /ui/face-tracker-widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ui/face-tracker-widget.cpp -------------------------------------------------------------------------------- /ui/face-tracker-widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ui/face-tracker-widget.hpp -------------------------------------------------------------------------------- /ui/obsgui-helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-face-tracker/HEAD/ui/obsgui-helper.hpp --------------------------------------------------------------------------------