├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── mini-openvino-facedetection.sln ├── mini-openvino-facedetection ├── Program.cs └── mini-openvino-facedetection.csproj └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdcb/mini-openvino-facedetection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdcb/mini-openvino-facedetection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdcb/mini-openvino-facedetection/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /mini-openvino-facedetection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdcb/mini-openvino-facedetection/HEAD/mini-openvino-facedetection.sln -------------------------------------------------------------------------------- /mini-openvino-facedetection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdcb/mini-openvino-facedetection/HEAD/mini-openvino-facedetection/Program.cs -------------------------------------------------------------------------------- /mini-openvino-facedetection/mini-openvino-facedetection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdcb/mini-openvino-facedetection/HEAD/mini-openvino-facedetection/mini-openvino-facedetection.csproj -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdcb/mini-openvino-facedetection/HEAD/readme.md --------------------------------------------------------------------------------