├── .gitignore ├── LICENSE ├── README.md ├── encode.go ├── example ├── HorizontalMirror.jpg ├── adjustlight.jpg ├── negativeFilmEffect.jpg ├── sunsetEffect.jpg ├── test.jpg └── verticalMirror.jpg ├── go.mod ├── io.go ├── process.go ├── recog.go ├── recog_test.go ├── testpic ├── aa.png ├── cc.png └── dd.jpg └── util.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/README.md -------------------------------------------------------------------------------- /encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/encode.go -------------------------------------------------------------------------------- /example/HorizontalMirror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/example/HorizontalMirror.jpg -------------------------------------------------------------------------------- /example/adjustlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/example/adjustlight.jpg -------------------------------------------------------------------------------- /example/negativeFilmEffect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/example/negativeFilmEffect.jpg -------------------------------------------------------------------------------- /example/sunsetEffect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/example/sunsetEffect.jpg -------------------------------------------------------------------------------- /example/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/example/test.jpg -------------------------------------------------------------------------------- /example/verticalMirror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/example/verticalMirror.jpg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module "github.com/Comdex/imgo" 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/io.go -------------------------------------------------------------------------------- /process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/process.go -------------------------------------------------------------------------------- /recog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/recog.go -------------------------------------------------------------------------------- /recog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/recog_test.go -------------------------------------------------------------------------------- /testpic/aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/testpic/aa.png -------------------------------------------------------------------------------- /testpic/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/testpic/cc.png -------------------------------------------------------------------------------- /testpic/dd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/testpic/dd.jpg -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comdex/imgo/HEAD/util.go --------------------------------------------------------------------------------