https://github.com/nagadomi/nunif
Misc; latest version of waifu2x; 2D video to stereo 3D video conversion
https://github.com/nagadomi/nunif
super-resolution vr waifu2x
Last synced: 5 months ago
JSON representation
Misc; latest version of waifu2x; 2D video to stereo 3D video conversion
- Host: GitHub
- URL: https://github.com/nagadomi/nunif
- Owner: nagadomi
- License: mit
- Created: 2019-08-13T07:23:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-05-08T16:35:27.000Z (5 months ago)
- Last Synced: 2025-05-08T17:42:05.963Z (5 months ago)
- Topics: super-resolution, vr, waifu2x
- Language: Python
- Homepage:
- Size: 9.24 MB
- Stars: 2,143
- Watchers: 30
- Forks: 181
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
My playground.
For the time being, I will make incompatible changes.
## waifu2x
[waifu2x/README.md](./waifu2x/README.md)
waifu2x: Image Super-Resolution for Anime-Style Art. Also it supports photo models (GAN based models)
The repository contains waifu2x pytorch implementation and pretrained models, started with porting the original [waifu2x](https://github.com/nagadomi/waifu2x).
The demo application can be found at
- https://waifu2x.udp.jp/ (Cloud version)
- https://unlimited.waifu2x.net/ (In-Browser version).## iw3
[iw3/README.md](./iw3/README.md)
I want to watch any 2D video as 3D video on my VR device, so I developed this very personal tool.
iw3 provides the ability to convert any 2D image/video into side-by-side 3D image/video.
### iw3-desktop
[iw3/docs/desktop.md](./iw3/docs/desktop.md)
iw3.desktop is a tool that converts your PC desktop screen into 3D and streaming over WiFi.
You can watch any image and video/live displayed on your PC as 3D in realtime.
## stilizer
[stlizer/README.md](./stlizer/README.md)
stlizer is a fast conservative video stabilizer.
## cliqa
[cliqa/README.md](./cliqa/README.md)
`cliqa` provides low-vision image quality scores that are more consistent across different images.
It is useful for filtering low-quality images with a threshold value when creating image datasets.
Currently, the following two models are supported.
- JPEGQuality: Predicts JPEG Quality from image content
- GrainNoiseLeve: Predicts Noise Level related to photograph and PSNR degraded by that noiseCLI tools are also available to filter out low quality images using these results.
## Install
### Installer for Windows users
- [nunif windows package](windows_package/docs/README.md)
- [nunif windows package (日本語)](windows_package/docs/README_ja.md)### For developers
#### Dependencies
- Python 3 (Works with Python 3.10 or later, developed with 3.10)
- [PyTorch](https://pytorch.org/get-started/locally/)
- See requirements.txtWe usually support the latest version. If there are bugs or compatibility issues, we will specify the version.
- [INSTALL-ubuntu](INSTALL-ubuntu.md)
- [INSTALL-windows](INSTALL-windows.md)
- [INSTALL-macos](INSTALL-macos.md)### License Notes
Note that if you distribute binary builds, it is possible that it will be GPL.
This is due to PyAV(av) wheel package containing the GPL version of ffmpeg library.
You can build PyAV with the LGPL version of ffmpeg library.If you load this repository with torch.hub.load for waifu2x Python API etc, this problem does not exist because PyAV is not a dependent package.