├── ML_Backend.sln ├── ML_Backend ├── Controllers │ └── SuperResolutionController.cs ├── ML_Backend.csproj ├── ML_Backend.csproj.user ├── Models │ └── SuperImage.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Python │ ├── Solutions.cs │ └── SuperRes │ │ ├── config.py │ │ ├── g_srgan.npz │ │ ├── model.py │ │ ├── output_images │ │ └── .gitignore │ │ ├── superres.py │ │ ├── temp │ │ └── .gitignore │ │ └── utils.py ├── Startup.cs ├── appsettings.Development.json └── appsettings.json ├── QT_Frontend └── image_loader.py └── README.md /ML_Backend.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend.sln -------------------------------------------------------------------------------- /ML_Backend/Controllers/SuperResolutionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Controllers/SuperResolutionController.cs -------------------------------------------------------------------------------- /ML_Backend/ML_Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/ML_Backend.csproj -------------------------------------------------------------------------------- /ML_Backend/ML_Backend.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/ML_Backend.csproj.user -------------------------------------------------------------------------------- /ML_Backend/Models/SuperImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Models/SuperImage.cs -------------------------------------------------------------------------------- /ML_Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Program.cs -------------------------------------------------------------------------------- /ML_Backend/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Properties/launchSettings.json -------------------------------------------------------------------------------- /ML_Backend/Python/Solutions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Python/Solutions.cs -------------------------------------------------------------------------------- /ML_Backend/Python/SuperRes/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Python/SuperRes/config.py -------------------------------------------------------------------------------- /ML_Backend/Python/SuperRes/g_srgan.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Python/SuperRes/g_srgan.npz -------------------------------------------------------------------------------- /ML_Backend/Python/SuperRes/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Python/SuperRes/model.py -------------------------------------------------------------------------------- /ML_Backend/Python/SuperRes/output_images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Python/SuperRes/output_images/.gitignore -------------------------------------------------------------------------------- /ML_Backend/Python/SuperRes/superres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Python/SuperRes/superres.py -------------------------------------------------------------------------------- /ML_Backend/Python/SuperRes/temp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Python/SuperRes/temp/.gitignore -------------------------------------------------------------------------------- /ML_Backend/Python/SuperRes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Python/SuperRes/utils.py -------------------------------------------------------------------------------- /ML_Backend/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/Startup.cs -------------------------------------------------------------------------------- /ML_Backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/appsettings.Development.json -------------------------------------------------------------------------------- /ML_Backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/ML_Backend/appsettings.json -------------------------------------------------------------------------------- /QT_Frontend/image_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/QT_Frontend/image_loader.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham/Machine-Learning-In-VFX/HEAD/README.md --------------------------------------------------------------------------------