├── .github └── workflows │ ├── android.yml │ ├── huggingface.yml │ ├── libmnn-linux.yml │ ├── libs.yml │ └── mnnsr-linux.yml ├── .gitignore ├── .idea ├── .gitignore ├── gradle.xml └── vcs.xml ├── 3rdparty ├── copy_cli_build_result.bat └── ncnn-android-vulkan-shared │ └── copy abi folders to here.txt ├── LICENSE ├── README.md ├── README_CHS.md ├── RealSR-NCNN-Android-CLI ├── .gitignore ├── Anime4k │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── jni │ │ ├── AviSynthPlus │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── Anime4KCPPASP.cpp │ │ ├── CLI │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── Config.hpp │ │ │ └── Downloader.hpp │ │ └── src │ │ │ ├── Downloader.cpp │ │ │ └── main.cpp │ │ ├── CMakeLists.txt │ │ ├── CWrapper │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AC.h │ │ └── src │ │ │ └── CWrapper.cpp │ │ ├── ThirdParty │ │ └── include │ │ │ ├── cmdline │ │ │ └── cmdline.hpp │ │ │ ├── ini17 │ │ │ └── ini17.hpp │ │ │ └── opencl │ │ │ └── CL │ │ │ └── opencl.hpp │ │ ├── cmake │ │ ├── Anime4KCPPCoreConfig.cmake.in │ │ ├── CWrapperConfig.cmake.in │ │ ├── Detection.cmake │ │ ├── DetectionSample │ │ │ └── has_filesystem.cpp │ │ ├── ThirdPartyForASP.cmake │ │ ├── ThirdPartyForCLI.cmake │ │ ├── ThirdPartyForCWrapper.cmake │ │ ├── ThirdPartyForCore.cmake │ │ └── ThirdPartyForDS.cmake │ │ └── core │ │ ├── CMakeLists.txt │ │ ├── include │ │ ├── AC.hpp │ │ ├── ACCPU.hpp │ │ ├── ACCreator.hpp │ │ ├── ACCuda.hpp │ │ ├── ACException.hpp │ │ ├── ACInitializer.hpp │ │ ├── ACManager.hpp │ │ ├── ACNCNN.hpp │ │ ├── ACNetType.hpp │ │ ├── ACOpenCL.hpp │ │ ├── ACProcessor.hpp │ │ ├── ACRegister.hpp │ │ ├── Anime4KCPP.hpp │ │ ├── Benchmark.hpp │ │ ├── CNN.hpp │ │ ├── CPUACNet.hpp │ │ ├── CPUACNetProcessor.hpp │ │ ├── CPUAnime4K09.hpp │ │ ├── CPUCNNProcessor.hpp │ │ ├── CoreInfo.hpp │ │ ├── CudaACNet.hpp │ │ ├── CudaAnime4K09.hpp │ │ ├── CudaInterface.hpp │ │ ├── FilterProcessor.hpp │ │ ├── NCNNACNet.hpp │ │ ├── NCNNACNetID.hpp │ │ ├── NCNNACNetModel.hpp │ │ ├── OpenCLACNet.hpp │ │ ├── OpenCLACNetKernel.hpp │ │ ├── OpenCLAnime4K09.hpp │ │ ├── OpenCLAnime4K09Kernel.hpp │ │ ├── Parallel.hpp │ │ ├── ThreadPool.hpp │ │ ├── VideoCodec.hpp │ │ ├── VideoIO.hpp │ │ ├── VideoIOAsync.hpp │ │ ├── VideoIOSerial.hpp │ │ ├── VideoIOThreads.hpp │ │ └── VideoProcessor.hpp │ │ ├── kernels │ │ ├── ACNetHDNL1Kernel.cl │ │ ├── ACNetHDNL2Kernel.cl │ │ ├── ACNetHDNL3Kernel.cl │ │ ├── ACNetKernel.cl │ │ └── Anime4KCPPKernel.cl │ │ ├── models │ │ ├── ACNetHDNL0.onnx │ │ ├── ACNetHDNL1.onnx │ │ ├── ACNetHDNL2.onnx │ │ └── ACNetHDNL3.onnx │ │ └── src │ │ ├── AC.cpp │ │ ├── ACCreator.cpp │ │ ├── ACCuda.cpp │ │ ├── ACNCNN.cpp │ │ ├── ACOpenCL.cpp │ │ ├── CPUACNet.cpp │ │ ├── CPUACNetProcessor.cpp │ │ ├── CPUAnime4K09.cpp │ │ ├── CPUCNNProcessor.cpp │ │ ├── CoreInfo.cpp │ │ ├── CudaACNet.cpp │ │ ├── CudaAnime4K09.cpp │ │ ├── FilterProcessor.cpp │ │ ├── NCNNACNet.cpp │ │ ├── OpenCLACNet.cpp │ │ ├── OpenCLAnime4K09.cpp │ │ ├── VideoIO.cpp │ │ ├── VideoIOAsync.cpp │ │ ├── VideoIOSerial.cpp │ │ ├── VideoIOThreads.cpp │ │ └── VideoProcessor.cpp ├── CMake │ ├── arch.cmake │ ├── libwebp.cmake │ ├── mnn.cmake │ ├── ncnn.cmake │ └── opencv.cmake ├── MNN-SR │ ├── .gitignore │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── jni │ │ ├── CMakeLists.txt │ │ ├── CMakeSettings.json │ │ ├── dcp.cpp │ │ ├── dcp.h │ │ ├── filesystem_utils.h │ │ ├── main.cpp │ │ ├── mnnsr.cpp │ │ ├── mnnsr.h │ │ ├── utils.hpp │ │ └── win32dirent.h ├── README.md ├── README_CHS.md ├── RealCUGAN │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── jni │ │ ├── CMakeLists.txt │ │ ├── filesystem_utils.h │ │ ├── main.cpp │ │ ├── realcugan.cpp │ │ ├── realcugan.h │ │ ├── realcugan_4x_postproc.comp.hex.h │ │ ├── realcugan_4x_postproc_tta.comp.hex.h │ │ ├── realcugan_postproc.comp.hex.h │ │ ├── realcugan_postproc_tta.comp.hex.h │ │ ├── realcugan_preproc.comp.hex.h │ │ ├── realcugan_preproc_tta.comp.hex.h │ │ ├── stb_image.h │ │ ├── stb_image_write.h │ │ ├── webp_image.h │ │ ├── wic_image.h │ │ └── win32dirent.h ├── RealSR │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── jni │ │ ├── CMakeLists.txt │ │ ├── filesystem_utils.h │ │ ├── main.cpp │ │ ├── realsr.cpp │ │ ├── realsr.h │ │ ├── realsr_postproc.comp.hex.h │ │ ├── realsr_postproc_tta.comp.hex.h │ │ ├── realsr_preproc.comp.hex.h │ │ ├── realsr_preproc_tta.comp.hex.h │ │ ├── stb_image.h │ │ ├── stb_image_write.h │ │ ├── webp_image.h │ │ ├── wic_image.h │ │ └── win32dirent.h ├── Resize │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── jni │ │ ├── CMakeLists.txt │ │ ├── avir.h │ │ ├── avir_dil.h │ │ ├── avir_float4_sse.h │ │ ├── avir_float8_avx.h │ │ ├── de_nearst.h │ │ ├── filesystem_utils.h │ │ ├── lancir.h │ │ ├── main.cpp │ │ ├── stb_image.h │ │ ├── stb_image_write.h │ │ ├── webp_image.h │ │ ├── wic_image.h │ │ └── win32dirent.h ├── SRMD │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── jni │ │ ├── CMakeLists.txt │ │ ├── filesystem_utils.h │ │ ├── main.cpp │ │ ├── srmd.cpp │ │ ├── srmd.h │ │ ├── srmd_postproc.spv.hex.h │ │ ├── srmd_postproc_fp16s.spv.hex.h │ │ ├── srmd_postproc_int8s.spv.hex.h │ │ ├── srmd_postproc_tta.spv.hex.h │ │ ├── srmd_postproc_tta_fp16s.spv.hex.h │ │ ├── srmd_postproc_tta_int8s.spv.hex.h │ │ ├── srmd_preproc.spv.hex.h │ │ ├── srmd_preproc_fp16s.spv.hex.h │ │ ├── srmd_preproc_int8s.spv.hex.h │ │ ├── srmd_preproc_tta.spv.hex.h │ │ ├── srmd_preproc_tta_fp16s.spv.hex.h │ │ ├── srmd_preproc_tta_int8s.spv.hex.h │ │ ├── stb_image.h │ │ ├── stb_image_write.h │ │ ├── webp_image.h │ │ ├── wic_image.h │ │ └── win32dirent.h ├── Waifu2x │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── jni │ │ ├── CMakeLists.txt │ │ ├── filesystem_utils.h │ │ ├── main.cpp │ │ ├── stb_image.h │ │ ├── stb_image_write.h │ │ ├── waifu2x.cpp │ │ ├── waifu2x.h │ │ ├── waifu2x_postproc.comp.hex.h │ │ ├── waifu2x_postproc_tta.comp.hex.h │ │ ├── waifu2x_preproc.comp.hex.h │ │ ├── waifu2x_preproc_tta.comp.hex.h │ │ ├── webp_image.h │ │ ├── wic_image.h │ │ └── win32dirent.h ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── RealSR-NCNN-Android-GUI ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── AndroidProjectSystem.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── deploymentTargetSelector.xml │ ├── deviceManager.xml │ ├── gradle.xml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── jarRepositories.xml │ ├── migrations.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── build.gradle │ ├── lint-baseline.xml │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── tumuyan │ │ │ └── ncnn │ │ │ └── realsr │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── tumuyan │ │ │ │ └── ncnn │ │ │ │ └── realsr │ │ │ │ ├── AssetsCopyer.java │ │ │ │ ├── CommandBuilder.java │ │ │ │ ├── DeviceInfo.java │ │ │ │ ├── GifUntils.java │ │ │ │ ├── ImageProcessor.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── PreprocessToPng.java │ │ │ │ ├── ProcessingService.java │ │ │ │ ├── SettingActivity.java │ │ │ │ └── UriUntils.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_baseline_all_inclusive_24.xml │ │ │ ├── round_corner_bg.xml │ │ │ ├── round_corner_bg_focused.xml │ │ │ └── round_corner_bg_normal.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_setting.xml │ │ │ ├── menu │ │ │ └── main_menu.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ ├── colors.xml │ │ │ └── themes.xml │ │ │ ├── values-zh │ │ │ └── strings.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ └── file_paths.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── tumuyan │ │ └── ncnn │ │ └── realsr │ │ └── ExampleUnitTest.java ├── build.gradle ├── docs │ └── notification_logic.md ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Resize-CLI ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── jni │ │ ├── CMakeLists.txt │ │ ├── CMakeSettings.json │ │ ├── filesystem_utils.h │ │ ├── input.png │ │ ├── main.cpp │ │ ├── stb_image.h │ │ ├── stb_image_resize.h │ │ ├── stb_image_write.h │ │ ├── webp_image.h │ │ ├── wic_image.h │ │ └── win32dirent.h ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── Screenshot.jpg ├── ScreenshotCHS.jpg ├── Screenshot_models.jpg ├── chainner-pth2ncnn.chn └── chainner-pth2ncnn.png /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/huggingface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/.github/workflows/huggingface.yml -------------------------------------------------------------------------------- /.github/workflows/libmnn-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/.github/workflows/libmnn-linux.yml -------------------------------------------------------------------------------- /.github/workflows/libs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/.github/workflows/libs.yml -------------------------------------------------------------------------------- /.github/workflows/mnnsr-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/.github/workflows/mnnsr-linux.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /3rdparty/copy_cli_build_result.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/3rdparty/copy_cli_build_result.bat -------------------------------------------------------------------------------- /3rdparty/ncnn-android-vulkan-shared/copy abi folders to here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/3rdparty/ncnn-android-vulkan-shared/copy abi folders to here.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/README.md -------------------------------------------------------------------------------- /README_CHS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/README_CHS.md -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/.gitignore -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/build.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/AviSynthPlus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/AviSynthPlus/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/AviSynthPlus/src/Anime4KCPPASP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/AviSynthPlus/src/Anime4KCPPASP.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CLI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CLI/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CLI/include/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CLI/include/Config.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CLI/include/Downloader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CLI/include/Downloader.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CLI/src/Downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CLI/src/Downloader.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CLI/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CLI/src/main.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CWrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CWrapper/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CWrapper/include/AC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CWrapper/include/AC.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CWrapper/src/CWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/CWrapper/src/CWrapper.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/ThirdParty/include/cmdline/cmdline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/ThirdParty/include/cmdline/cmdline.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/ThirdParty/include/ini17/ini17.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/ThirdParty/include/ini17/ini17.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/ThirdParty/include/opencl/CL/opencl.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/Anime4KCPPCoreConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/Anime4KCPPCoreConfig.cmake.in -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/CWrapperConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/CWrapperConfig.cmake.in -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/Detection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/Detection.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/DetectionSample/has_filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/DetectionSample/has_filesystem.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/ThirdPartyForASP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/ThirdPartyForASP.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/ThirdPartyForCLI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/ThirdPartyForCLI.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/ThirdPartyForCWrapper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/ThirdPartyForCWrapper.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/ThirdPartyForCore.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/ThirdPartyForCore.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/ThirdPartyForDS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/cmake/ThirdPartyForDS.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/AC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/AC.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACCPU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACCPU.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACCreator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACCreator.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACCuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACCuda.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACException.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACInitializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACInitializer.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACManager.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACNCNN.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACNCNN.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACNetType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACNetType.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACOpenCL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACOpenCL.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACProcessor.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACRegister.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ACRegister.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/Anime4KCPP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/Anime4KCPP.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/Benchmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/Benchmark.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CNN.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CNN.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CPUACNet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CPUACNet.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CPUACNetProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CPUACNetProcessor.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CPUAnime4K09.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CPUAnime4K09.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CPUCNNProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CPUCNNProcessor.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CoreInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CoreInfo.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CudaACNet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CudaACNet.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CudaAnime4K09.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CudaAnime4K09.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CudaInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/CudaInterface.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/FilterProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/FilterProcessor.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/NCNNACNet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/NCNNACNet.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/NCNNACNetID.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/NCNNACNetID.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/NCNNACNetModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/NCNNACNetModel.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/OpenCLACNet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/OpenCLACNet.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/OpenCLACNetKernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/OpenCLACNetKernel.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/OpenCLAnime4K09.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/OpenCLAnime4K09.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/OpenCLAnime4K09Kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/OpenCLAnime4K09Kernel.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/Parallel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/Parallel.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ThreadPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/ThreadPool.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoCodec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoCodec.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoIO.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoIOAsync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoIOAsync.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoIOSerial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoIOSerial.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoIOThreads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoIOThreads.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/include/VideoProcessor.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/kernels/ACNetHDNL1Kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/kernels/ACNetHDNL1Kernel.cl -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/kernels/ACNetHDNL2Kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/kernels/ACNetHDNL2Kernel.cl -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/kernels/ACNetHDNL3Kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/kernels/ACNetHDNL3Kernel.cl -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/kernels/ACNetKernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/kernels/ACNetKernel.cl -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/kernels/Anime4KCPPKernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/kernels/Anime4KCPPKernel.cl -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/models/ACNetHDNL0.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/models/ACNetHDNL0.onnx -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/models/ACNetHDNL1.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/models/ACNetHDNL1.onnx -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/models/ACNetHDNL2.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/models/ACNetHDNL2.onnx -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/models/ACNetHDNL3.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/models/ACNetHDNL3.onnx -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/AC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/AC.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/ACCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/ACCreator.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/ACCuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/ACCuda.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/ACNCNN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/ACNCNN.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/ACOpenCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/ACOpenCL.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CPUACNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CPUACNet.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CPUACNetProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CPUACNetProcessor.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CPUAnime4K09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CPUAnime4K09.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CPUCNNProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CPUCNNProcessor.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CoreInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CoreInfo.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CudaACNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CudaACNet.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CudaAnime4K09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/CudaAnime4K09.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/FilterProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/FilterProcessor.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/NCNNACNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/NCNNACNet.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/OpenCLACNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/OpenCLACNet.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/OpenCLAnime4K09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/OpenCLAnime4K09.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/VideoIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/VideoIO.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/VideoIOAsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/VideoIOAsync.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/VideoIOSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/VideoIOSerial.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/VideoIOThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/VideoIOThreads.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/VideoProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Anime4k/src/main/jni/core/src/VideoProcessor.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/CMake/arch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/CMake/arch.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/CMake/libwebp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/CMake/libwebp.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/CMake/mnn.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/CMake/mnn.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/CMake/ncnn.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/CMake/ncnn.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/CMake/opencv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/CMake/opencv.cmake -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/build.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/CMakeSettings.json -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/dcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/dcp.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/dcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/dcp.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/filesystem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/filesystem_utils.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/main.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/mnnsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/mnnsr.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/mnnsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/mnnsr.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/utils.hpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/win32dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/MNN-SR/src/main/jni/win32dirent.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/README.md -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/README_CHS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/README_CHS.md -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/build.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/filesystem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/filesystem_utils.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/main.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_4x_postproc.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_4x_postproc.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_4x_postproc_tta.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_4x_postproc_tta.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_postproc.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_postproc.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_postproc_tta.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_postproc_tta.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_preproc.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_preproc.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_preproc_tta.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/realcugan_preproc_tta.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/stb_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/stb_image_write.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/webp_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/webp_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/wic_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/wic_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/win32dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealCUGAN/src/main/jni/win32dirent.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/build.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/filesystem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/filesystem_utils.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/main.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr_postproc.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr_postproc.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr_postproc_tta.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr_postproc_tta.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr_preproc.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr_preproc.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr_preproc_tta.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/realsr_preproc_tta.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/stb_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/stb_image_write.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/webp_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/webp_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/wic_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/wic_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/RealSR/src/main/jni/win32dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/RealSR/src/main/jni/win32dirent.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/build.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/avir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/avir.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/avir_dil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/avir_dil.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/avir_float4_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/avir_float4_sse.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/avir_float8_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/avir_float8_avx.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/de_nearst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/de_nearst.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/filesystem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/filesystem_utils.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/lancir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/lancir.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/main.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/stb_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/stb_image_write.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/webp_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/webp_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/wic_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/wic_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Resize/src/main/jni/win32dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Resize/src/main/jni/win32dirent.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/build.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/filesystem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/filesystem_utils.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/main.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc_fp16s.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc_fp16s.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc_int8s.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc_int8s.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc_tta.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc_tta.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc_tta_fp16s.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc_tta_fp16s.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc_tta_int8s.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_postproc_tta_int8s.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc_fp16s.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc_fp16s.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc_int8s.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc_int8s.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc_tta.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc_tta.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc_tta_fp16s.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc_tta_fp16s.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc_tta_int8s.spv.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/srmd_preproc_tta_int8s.spv.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/stb_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/stb_image_write.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/webp_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/webp_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/wic_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/wic_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/SRMD/src/main/jni/win32dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/SRMD/src/main/jni/win32dirent.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/build.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/filesystem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/filesystem_utils.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/main.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/stb_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/stb_image_write.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x.cpp -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x_postproc.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x_postproc.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x_postproc_tta.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x_postproc_tta.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x_preproc.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x_preproc.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x_preproc_tta.comp.hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/waifu2x_preproc_tta.comp.hex.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/webp_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/webp_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/wic_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/wic_image.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/win32dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/Waifu2x/src/main/jni/win32dirent.h -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/build.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/gradle.properties -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/gradlew -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/gradlew.bat -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/local.properties -------------------------------------------------------------------------------- /RealSR-NCNN-Android-CLI/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-CLI/settings.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.gitignore -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/.name: -------------------------------------------------------------------------------- 1 | RealSR -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/compiler.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/deviceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/deviceManager.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/gradle.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/migrations.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/misc.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/.idea/vcs.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/build.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/lint-baseline.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/proguard-rules.pro -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/androidTest/java/com/tumuyan/ncnn/realsr/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/androidTest/java/com/tumuyan/ncnn/realsr/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/AssetsCopyer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/AssetsCopyer.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/CommandBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/CommandBuilder.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/DeviceInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/DeviceInfo.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/GifUntils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/GifUntils.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/ImageProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/ImageProcessor.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/MainActivity.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/PreprocessToPng.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/PreprocessToPng.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/ProcessingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/ProcessingService.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/SettingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/SettingActivity.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/UriUntils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/UriUntils.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/drawable/ic_baseline_all_inclusive_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/drawable/ic_baseline_all_inclusive_24.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/drawable/round_corner_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/drawable/round_corner_bg.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/drawable/round_corner_bg_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/drawable/round_corner_bg_focused.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/drawable/round_corner_bg_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/drawable/round_corner_bg_normal.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/layout/activity_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/layout/activity_setting.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/app/src/test/java/com/tumuyan/ncnn/realsr/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/app/src/test/java/com/tumuyan/ncnn/realsr/ExampleUnitTest.java -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/build.gradle -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/docs/notification_logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/docs/notification_logic.md -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/gradle.properties -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/gradlew -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/gradlew.bat -------------------------------------------------------------------------------- /RealSR-NCNN-Android-GUI/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/RealSR-NCNN-Android-GUI/settings.gradle -------------------------------------------------------------------------------- /Resize-CLI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/.gitignore -------------------------------------------------------------------------------- /Resize-CLI/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/build.gradle -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/CMakeSettings.json -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/filesystem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/filesystem_utils.h -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/input.png -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/main.cpp -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/stb_image.h -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/stb_image_resize.h -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/stb_image_write.h -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/webp_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/webp_image.h -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/wic_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/wic_image.h -------------------------------------------------------------------------------- /Resize-CLI/app/src/main/jni/win32dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/app/src/main/jni/win32dirent.h -------------------------------------------------------------------------------- /Resize-CLI/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/build.gradle -------------------------------------------------------------------------------- /Resize-CLI/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Resize-CLI/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Resize-CLI/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/gradlew -------------------------------------------------------------------------------- /Resize-CLI/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/gradlew.bat -------------------------------------------------------------------------------- /Resize-CLI/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Resize-CLI/local.properties -------------------------------------------------------------------------------- /Resize-CLI/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Screenshot.jpg -------------------------------------------------------------------------------- /ScreenshotCHS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/ScreenshotCHS.jpg -------------------------------------------------------------------------------- /Screenshot_models.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/Screenshot_models.jpg -------------------------------------------------------------------------------- /chainner-pth2ncnn.chn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/chainner-pth2ncnn.chn -------------------------------------------------------------------------------- /chainner-pth2ncnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/RealSR-NCNN-Android/HEAD/chainner-pth2ncnn.png --------------------------------------------------------------------------------