├── CMakeLists.txt ├── README.md ├── common.hpp ├── cuda_utils.h ├── gen_wts.py ├── logging.h ├── macros.h ├── postprocess.cu ├── postprocess.hpp ├── preprocess.cu ├── preprocess.hpp ├── real-esrgan.cpp ├── samples └── OST_009.png └── utils.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/README.md -------------------------------------------------------------------------------- /common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/common.hpp -------------------------------------------------------------------------------- /cuda_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/cuda_utils.h -------------------------------------------------------------------------------- /gen_wts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/gen_wts.py -------------------------------------------------------------------------------- /logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/logging.h -------------------------------------------------------------------------------- /macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/macros.h -------------------------------------------------------------------------------- /postprocess.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/postprocess.cu -------------------------------------------------------------------------------- /postprocess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/postprocess.hpp -------------------------------------------------------------------------------- /preprocess.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/preprocess.cu -------------------------------------------------------------------------------- /preprocess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/preprocess.hpp -------------------------------------------------------------------------------- /real-esrgan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/real-esrgan.cpp -------------------------------------------------------------------------------- /samples/OST_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/samples/OST_009.png -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yester31/Real_ESRGAN_TRT/HEAD/utils.h --------------------------------------------------------------------------------