song2:Go中的快速高斯模糊 源码
歌2 Go中高斯模糊算法的快速(线性时间)实现。 原始算法取自 ,并使用goroutine。 安装与使用 包裹 从该存储库下载并编译。 go get -u github.com/matsuyoshi30/song2 并将其作为包导入,调用API song2.GaussianBlur(src, blurRadius) 。 package main import ( "fmt" "image" "image/png" "os" "github.com/matsuyoshi30/song2" ) func main () { img , err := os . Open ( "./input.png" ) if err != nil { fmt . Println ( err ) return
文件列表
song2-main.zip
(预估有个10文件)
song2-main
go.mod
93B
assets
blured.png
238KB
sample.png
612KB
LICENSE
1KB
go.sum
3KB
song2_test.go
6KB
README.md
3KB
stackblur_test.go
11KB
暂无评论