Skip to content

Commit 3526753

Browse files
committedApr 5, 2020
修订《高品质后处理:十种图像模糊算法的总结与实现》
修订《高品质后处理:十种图像模糊算法的总结与实现》
1 parent d10624b commit 3526753

File tree

1 file changed

+2
-2
lines changed
  • Content/高品质后处理:十种图像模糊算法的总结与实现

1 file changed

+2
-2
lines changed
 

‎Content/高品质后处理:十种图像模糊算法的总结与实现/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ Box Blur也是线性可分的,如有需要,也可以借助其此性质,如
232232

233233
另外box blur也有不少扩展与变体,比如Tent Blur(两次Box Blur)、Quadratic Blur(三次Box Blur)等,具体本文暂时就不展开了。
234234

235-
其中,Tent Blur也已在XPL中进行了实现,具体可见:https://github.com/QianMo/X-PostProcessing-Library/tree/master/Assets/X-PostProcessing/Effects/TentBlur
235+
其中,Tent Blur也已在XPL中进行了实现,具体可见:[X-PostProcessing/Effects/TentBlur](https://github.com/QianMo/X-PostProcessing-Library/tree/master/Assets/X-PostProcessing/Effects/TentBlur)
236236

237237

238238

@@ -251,7 +251,7 @@ Box Blur也是线性可分的,如有需要,也可以借助其此性质,如
251251
return s;
252252
}
253253

254-
**完整的Runtime + Shader实现可见:** https://github.com/QianMo/X-PostProcessing-Library/tree/master/Assets/X-PostProcessing/Effects/BoxBlur
254+
**完整的Runtime + Shader实现可见:** [X-PostProcessing/Effects/BoxBlur](https://github.com/QianMo/X-PostProcessing-Library/tree/master/Assets/X-PostProcessing/Effects/BoxBlur)
255255

256256
另外也可以考虑将uv计算放到vertex层。
257257

0 commit comments

Comments
 (0)
Failed to load comments.