├── .gitignore ├── LICENSE ├── README.md ├── doc ├── bch.pdf ├── qr_standard.pdf └── 基于边缘增强的二维码区域快速检测定位算法.pdf ├── example ├── groups │ └── .gitkeep ├── main.go ├── qrcode.jpg ├── qrcode.png ├── qrcode1.png ├── qrcode10.png ├── qrcode11.png ├── qrcode12.png ├── qrcode13.png ├── qrcode14.jpeg ├── qrcode15.jpeg ├── qrcode2.png ├── qrcode3.png ├── qrcode4.png ├── qrcode5.png ├── qrcode6.png ├── qrcode7.png ├── qrcode8.png └── qrcode9.png ├── go.mod ├── go.sum ├── qrcode.go ├── qrcode_test.go └── version.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/README.md -------------------------------------------------------------------------------- /doc/bch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/doc/bch.pdf -------------------------------------------------------------------------------- /doc/qr_standard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/doc/qr_standard.pdf -------------------------------------------------------------------------------- /doc/基于边缘增强的二维码区域快速检测定位算法.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/doc/基于边缘增强的二维码区域快速检测定位算法.pdf -------------------------------------------------------------------------------- /example/groups/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/main.go -------------------------------------------------------------------------------- /example/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode.jpg -------------------------------------------------------------------------------- /example/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode.png -------------------------------------------------------------------------------- /example/qrcode1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode1.png -------------------------------------------------------------------------------- /example/qrcode10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode10.png -------------------------------------------------------------------------------- /example/qrcode11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode11.png -------------------------------------------------------------------------------- /example/qrcode12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode12.png -------------------------------------------------------------------------------- /example/qrcode13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode13.png -------------------------------------------------------------------------------- /example/qrcode14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode14.jpeg -------------------------------------------------------------------------------- /example/qrcode15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode15.jpeg -------------------------------------------------------------------------------- /example/qrcode2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode2.png -------------------------------------------------------------------------------- /example/qrcode3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode3.png -------------------------------------------------------------------------------- /example/qrcode4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode4.png -------------------------------------------------------------------------------- /example/qrcode5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode5.png -------------------------------------------------------------------------------- /example/qrcode6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode6.png -------------------------------------------------------------------------------- /example/qrcode7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode7.png -------------------------------------------------------------------------------- /example/qrcode8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode8.png -------------------------------------------------------------------------------- /example/qrcode9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/example/qrcode9.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/go.sum -------------------------------------------------------------------------------- /qrcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/qrcode.go -------------------------------------------------------------------------------- /qrcode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/qrcode_test.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuotoo/qrcode/HEAD/version.go --------------------------------------------------------------------------------