├── .gitignore ├── LICENSE ├── README.md ├── samples ├── aspnetcore │ ├── uuisample.sln │ └── uuisample │ │ ├── Constants.cs │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── MobileDevice.cs │ │ ├── Models │ │ ├── ErrorViewModel.cs │ │ ├── MessageViewModel.cs │ │ └── UuiFormModel.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Uui.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _Message.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── uuisample.csproj │ │ └── wwwroot │ │ ├── README.md │ │ └── favicon.ico └── php │ ├── README.md │ └── uui.php └── uui ├── css └── uui.css ├── images ├── back.svg ├── logo.svg ├── perfect.png ├── tooclose.png └── toofaraway.png ├── js ├── bws.capture.js ├── getUserMedia.js ├── getUserMedia.min.js ├── jquery-3.7.1.min.js ├── objLoader.js ├── objLoader.min.js └── three.min.js ├── language ├── de.json └── en.json ├── model └── head.obj └── video └── nodyourhead.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/README.md -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample.sln -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Constants.cs -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/MobileDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/MobileDevice.cs -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Models/MessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Models/MessageViewModel.cs -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Models/UuiFormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Models/UuiFormModel.cs -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Program.cs -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Startup.cs -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Views/Home/Uui.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Views/Home/Uui.cshtml -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Views/Shared/_Message.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Views/Shared/_Message.cshtml -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/appsettings.Development.json -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/appsettings.json -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/uuisample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/uuisample.csproj -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/wwwroot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/wwwroot/README.md -------------------------------------------------------------------------------- /samples/aspnetcore/uuisample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/aspnetcore/uuisample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /samples/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/php/README.md -------------------------------------------------------------------------------- /samples/php/uui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/samples/php/uui.php -------------------------------------------------------------------------------- /uui/css/uui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/css/uui.css -------------------------------------------------------------------------------- /uui/images/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/images/back.svg -------------------------------------------------------------------------------- /uui/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/images/logo.svg -------------------------------------------------------------------------------- /uui/images/perfect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/images/perfect.png -------------------------------------------------------------------------------- /uui/images/tooclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/images/tooclose.png -------------------------------------------------------------------------------- /uui/images/toofaraway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/images/toofaraway.png -------------------------------------------------------------------------------- /uui/js/bws.capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/js/bws.capture.js -------------------------------------------------------------------------------- /uui/js/getUserMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/js/getUserMedia.js -------------------------------------------------------------------------------- /uui/js/getUserMedia.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/js/getUserMedia.min.js -------------------------------------------------------------------------------- /uui/js/jquery-3.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/js/jquery-3.7.1.min.js -------------------------------------------------------------------------------- /uui/js/objLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/js/objLoader.js -------------------------------------------------------------------------------- /uui/js/objLoader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/js/objLoader.min.js -------------------------------------------------------------------------------- /uui/js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/js/three.min.js -------------------------------------------------------------------------------- /uui/language/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/language/de.json -------------------------------------------------------------------------------- /uui/language/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/language/en.json -------------------------------------------------------------------------------- /uui/model/head.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/model/head.obj -------------------------------------------------------------------------------- /uui/video/nodyourhead.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioID-GmbH/BWS-GUI/HEAD/uui/video/nodyourhead.mp4 --------------------------------------------------------------------------------