Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
readme.md
readme.cn.md
  • Loading branch information
TianZerL committed Jun 13, 2020
1 parent f169275 commit a3337e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Anime4KCPP提供一个改进后的[bloc97的Anime4K](https://github.com/bloc97/A
Anime4K算法是一种简单且高质量的动漫类图像超分辨率算法,它并不使用机器学习,因此速度非常快,可用于实时处理和预处理。

# 关于ACNet
ACNet是一个基于卷积神经网络的超分辨率算法,旨在同时提供高质量和高性能。
ACNet是一个基于卷积神经网络的超分辨率算法,旨在同时提供高质量和高性能。
HDN模式能更好的降噪。
详情可见[wiki页面](https://github.com/TianZerL/Anime4KCPP/wiki/ACNet)

# 为什么选择Anime4KCPP
Expand Down Expand Up @@ -124,6 +125,7 @@ Anime4KCPP现在提供Android版本, 使用你的手机处理您的图片,就
-e, --postFilters 选择后处理滤镜,仅当postProcessing开启时有效,可使用以下滤镜: Median blur=000001,Mean blur=000010Gaussian blur weak=000100, Gaussian blur=001000, Bilateral filter=010000, Bilateral filter faster=100000,使用它们对应的二进制进行自由组合,例如: Gaussian blur weak + Bilateral filter = 000100 | 010000 = 010100 = 20(D),输入20即可开启Gaussian blur weak 和Bilateral filter,这也是我推荐用于小于1080P图像的设置,对于大于等于1080P的图像推荐使用24,小于1080P的视频推荐36,大于等于1080P的视频荐40 (unsigned int [=20])
-q, --GPUMode 开启GPU加速
-w, --CNNMode 开启ACNet
-H, --HDN 为ACNet开启HDN模式
-l, --listGPUs 列出GPU平台与设备
-h, --platformID 指定平台ID (unsigned int [=0])
-d, --deviceID 指定设备ID (unsigned int [=0])
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Anime4K is a simple high-quality anime upscale algorithm. The version 0.9 does n

# About ACNet
ACNet is a CNN based anime upscale algorithm. It aims to provide both high-quality and high-performance.
HDN mode can better denoise.
for detail, see [wiki page](https://github.com/TianZerL/Anime4KCPP/wiki/ACNet)

# Why Anime4KCPP
Expand Down Expand Up @@ -138,6 +139,7 @@ For video processing, all you need do is to add the argument ```-v```, and waiti
-e, --postFilters Enhancement filter, only working when postProcessing is true,there are 5 options by binary:Median blur=0000001, Mean blur=0000010, CAS Sharpening=0000100, Gaussian blur weak=0001000, Gaussian blur=0010000, Bilateral filter=0100000, Bilateral filter faster=1000000, you can freely combine them, eg: Gaussian blur weak + Bilateral filter = 0001000 | 0100000 = 0101000 = 40(D), so you can put 40 to enable Gaussian blur weak and Bilateral filter, which also is what I recommend for image that < 1080P, 48 for image that >= 1080P, and for performance I recommend to use 72 for video that < 1080P, 80 for video that >=1080P (unsigned int [=40])
-q, --GPUMode Enable GPU acceleration
-w, --CNNMode Enable ACNet
-H, --HDN Enable HDN mode for ACNet
-l, --listGPUs list GPUs
-h, --platformID Specify the platform ID (unsigned int [=0])
-d, --deviceID Specify the device ID (unsigned int [=0])
Expand Down

0 comments on commit a3337e1

Please sign in to comment.