├── .editorconfig ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── LICENSE ├── MangaJaNaiConverterGui.sln ├── MangaJaNaiConverterGui ├── App.axaml ├── App.axaml.cs ├── Assets │ └── logo.ico ├── Drivers │ └── NewtonsoftJsonSuspensionDriver.cs ├── MangaJaNaiConverterGui.csproj ├── Program.cs ├── Services │ ├── Downloader.cs │ ├── ETACalculator.cs │ ├── IPythonService.cs │ ├── ISuspensionDriverService.cs │ ├── IUpdateManagerService.cs │ ├── PythonService.cs │ ├── SuspensionDriverService.cs │ └── UpdateManagerService.cs ├── ViewLocator.cs ├── ViewModels │ ├── MainWindowViewModel.cs │ └── ViewModelBase.cs ├── Views │ ├── MainWindow.axaml │ └── MainWindow.axaml.cs ├── app.manifest ├── appstate2.json ├── backend │ ├── ImageMagick │ │ ├── Custom Gray Gamma 1.0.icc │ │ ├── Custom RGB Gamma 1.0.icc │ │ └── Dot Gain 20%.icc │ ├── resources │ │ └── default_cli_configuration.json │ └── src │ │ ├── .pre-commit-config.yaml │ │ ├── README.md │ │ ├── __init__.py │ │ ├── accelerator_detection.py │ │ ├── api │ │ ├── __init__.py │ │ ├── api.py │ │ ├── group.py │ │ ├── input.py │ │ ├── iter.py │ │ ├── lazy.py │ │ ├── node_check.py │ │ ├── node_context.py │ │ ├── node_data.py │ │ ├── output.py │ │ ├── settings.py │ │ └── types.py │ │ ├── device_list.py │ │ ├── gpu.py │ │ ├── navi.py │ │ ├── nodes │ │ ├── __init__.py │ │ ├── condition.py │ │ ├── group.py │ │ ├── groups.py │ │ ├── impl │ │ │ ├── __init__.py │ │ │ ├── blend.py │ │ │ ├── color │ │ │ │ ├── __init__.py │ │ │ │ ├── color.py │ │ │ │ ├── convert.py │ │ │ │ ├── convert_data.py │ │ │ │ └── convert_model.py │ │ │ ├── image_formats.py │ │ │ ├── image_op.py │ │ │ ├── image_utils.py │ │ │ ├── onnx │ │ │ │ ├── __init__.py │ │ │ │ ├── auto_split.py │ │ │ │ ├── load.py │ │ │ │ ├── model.py │ │ │ │ ├── np_tensor_utils.py │ │ │ │ ├── onnx_to_ncnn.py │ │ │ │ ├── session.py │ │ │ │ ├── tensorproto_utils.py │ │ │ │ ├── update_model_dims.py │ │ │ │ └── utils.py │ │ │ ├── pil_utils.py │ │ │ ├── pytorch │ │ │ │ ├── __init__.py │ │ │ │ ├── auto_split.py │ │ │ │ ├── convert_to_onnx_impl.py │ │ │ │ ├── pix_transform │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── auto_split.py │ │ │ │ │ ├── pix_transform.py │ │ │ │ │ └── pix_transform_net.py │ │ │ │ ├── rife │ │ │ │ │ ├── IFNet_HDv3_v4_14_align.py │ │ │ │ │ └── warplayer.py │ │ │ │ └── utils.py │ │ │ ├── resize.py │ │ │ └── upscale │ │ │ │ ├── __init__.py │ │ │ │ ├── auto_split.py │ │ │ │ ├── auto_split_tiles.py │ │ │ │ ├── basic_upscale.py │ │ │ │ ├── convenient_upscale.py │ │ │ │ ├── custom_scale.py │ │ │ │ ├── exact_split.py │ │ │ │ ├── grayscale.py │ │ │ │ ├── passthrough.py │ │ │ │ ├── tile_blending.py │ │ │ │ └── tiler.py │ │ ├── node_cache.py │ │ ├── properties │ │ │ ├── __init__.py │ │ │ ├── inputs │ │ │ │ ├── __init__.py │ │ │ │ ├── __system_inputs.py │ │ │ │ ├── file_inputs.py │ │ │ │ ├── generic_inputs.py │ │ │ │ ├── image_dropdown_inputs.py │ │ │ │ ├── label.py │ │ │ │ ├── ncnn_inputs.py │ │ │ │ ├── numeric_inputs.py │ │ │ │ ├── numpy_inputs.py │ │ │ │ ├── onnx_inputs.py │ │ │ │ └── pytorch_inputs.py │ │ │ └── outputs │ │ │ │ ├── __init__.py │ │ │ │ ├── file_outputs.py │ │ │ │ ├── generic_outputs.py │ │ │ │ ├── ncnn_outputs.py │ │ │ │ ├── numpy_outputs.py │ │ │ │ ├── onnx_outputs.py │ │ │ │ └── pytorch_outputs.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── format.py │ │ │ ├── seed.py │ │ │ └── utils.py │ │ ├── packages │ │ └── chaiNNer_pytorch │ │ │ ├── __init__.py │ │ │ ├── pytorch │ │ │ ├── __init__.py │ │ │ ├── io │ │ │ │ └── load_model.py │ │ │ └── processing │ │ │ │ └── upscale_image.py │ │ │ └── settings.py │ │ ├── progress_controller.py │ │ ├── pyproject.toml │ │ ├── pyrightconfig.json │ │ ├── run_upscale.py │ │ ├── spandrel_custom │ │ ├── __init__.py │ │ └── architectures │ │ │ └── FDAT │ │ │ ├── __arch │ │ │ ├── LICENSE │ │ │ └── fdat.py │ │ │ └── __init__.py │ │ ├── system.py │ │ └── test_accelerators.py └── logo.png ├── README.md ├── logo.png └── pack.bat /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/LICENSE -------------------------------------------------------------------------------- /MangaJaNaiConverterGui.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui.sln -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/App.axaml -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/App.axaml.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Assets/logo.ico -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Drivers/NewtonsoftJsonSuspensionDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Drivers/NewtonsoftJsonSuspensionDriver.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/MangaJaNaiConverterGui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/MangaJaNaiConverterGui.csproj -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Program.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Services/Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Services/Downloader.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Services/ETACalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Services/ETACalculator.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Services/IPythonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Services/IPythonService.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Services/ISuspensionDriverService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Services/ISuspensionDriverService.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Services/IUpdateManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Services/IUpdateManagerService.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Services/PythonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Services/PythonService.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Services/SuspensionDriverService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Services/SuspensionDriverService.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Services/UpdateManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Services/UpdateManagerService.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/ViewLocator.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Views/MainWindow.axaml -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/app.manifest -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/appstate2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/appstate2.json -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/ImageMagick/Custom Gray Gamma 1.0.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/ImageMagick/Custom Gray Gamma 1.0.icc -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/ImageMagick/Custom RGB Gamma 1.0.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/ImageMagick/Custom RGB Gamma 1.0.icc -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/ImageMagick/Dot Gain 20%.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/ImageMagick/Dot Gain 20%.icc -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/resources/default_cli_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/resources/default_cli_configuration.json -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/.pre-commit-config.yaml -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/README.md -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/accelerator_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/accelerator_detection.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/__init__.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/api.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/group.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/input.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/iter.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/lazy.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/node_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/node_check.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/node_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/node_context.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/node_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/node_data.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/output.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/settings.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/api/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/api/types.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/device_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/device_list.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/gpu.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/navi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/navi.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/condition.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/group.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/groups.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/blend.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/color/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/color/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/color/color.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/color/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/color/convert.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/color/convert_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/color/convert_data.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/color/convert_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/color/convert_model.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/image_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/image_formats.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/image_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/image_op.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/image_utils.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/auto_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/auto_split.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/load.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/model.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/np_tensor_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/np_tensor_utils.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/onnx_to_ncnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/onnx_to_ncnn.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/session.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/tensorproto_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/tensorproto_utils.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/update_model_dims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/update_model_dims.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/onnx/utils.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pil_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/pil_utils.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/auto_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/auto_split.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/convert_to_onnx_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/convert_to_onnx_impl.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/pix_transform/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/pix_transform/LICENSE -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/pix_transform/auto_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/pix_transform/auto_split.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/pix_transform/pix_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/pix_transform/pix_transform.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/pix_transform/pix_transform_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/pix_transform/pix_transform_net.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/rife/IFNet_HDv3_v4_14_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/rife/IFNet_HDv3_v4_14_align.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/rife/warplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/rife/warplayer.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/pytorch/utils.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/resize.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/auto_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/auto_split.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/auto_split_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/auto_split_tiles.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/basic_upscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/basic_upscale.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/convenient_upscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/convenient_upscale.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/custom_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/custom_scale.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/exact_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/exact_split.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/grayscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/grayscale.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/passthrough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/passthrough.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/tile_blending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/tile_blending.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/tiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/impl/upscale/tiler.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/node_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/node_cache.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/__init__.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/__system_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/__system_inputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/file_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/file_inputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/generic_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/generic_inputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/image_dropdown_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/image_dropdown_inputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/label.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/ncnn_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/ncnn_inputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/numeric_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/numeric_inputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/numpy_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/numpy_inputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/onnx_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/onnx_inputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/pytorch_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/inputs/pytorch_inputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/__init__.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/file_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/file_outputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/generic_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/generic_outputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/ncnn_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/ncnn_outputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/numpy_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/numpy_outputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/onnx_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/onnx_outputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/pytorch_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/properties/outputs/pytorch_outputs.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/utils/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/utils/format.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/utils/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/utils/seed.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/nodes/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/nodes/utils/utils.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/packages/chaiNNer_pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/packages/chaiNNer_pytorch/__init__.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/packages/chaiNNer_pytorch/pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/packages/chaiNNer_pytorch/pytorch/__init__.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/packages/chaiNNer_pytorch/pytorch/io/load_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/packages/chaiNNer_pytorch/pytorch/io/load_model.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/packages/chaiNNer_pytorch/pytorch/processing/upscale_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/packages/chaiNNer_pytorch/pytorch/processing/upscale_image.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/packages/chaiNNer_pytorch/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/packages/chaiNNer_pytorch/settings.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/progress_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/progress_controller.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/pyproject.toml -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/pyrightconfig.json -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/run_upscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/run_upscale.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/spandrel_custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/spandrel_custom/__init__.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/spandrel_custom/architectures/FDAT/__arch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/spandrel_custom/architectures/FDAT/__arch/LICENSE -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/spandrel_custom/architectures/FDAT/__arch/fdat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/spandrel_custom/architectures/FDAT/__arch/fdat.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/spandrel_custom/architectures/FDAT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/spandrel_custom/architectures/FDAT/__init__.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/system.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/backend/src/test_accelerators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/backend/src/test_accelerators.py -------------------------------------------------------------------------------- /MangaJaNaiConverterGui/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/MangaJaNaiConverterGui/logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/logo.png -------------------------------------------------------------------------------- /pack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-database/MangaJaNaiConverterGui/HEAD/pack.bat --------------------------------------------------------------------------------