Home
Softono
hq2xgo

hq2xgo

Open source Go
14
Stars
0
Forks
0
Issues
1
Watchers
3 years
Last Commit

About hq2xgo

Enlarge image by 2x with hq2x algorithm

Platforms

Web Self-hosted

Languages

Go

Links

hq2xgo

Go GoDoc

Enlarge image by 2x with hq2x algorithm

Example(Before -> After)

    


    

Usage

command line

$ make build # require make and go
$ hq2x input.png output.png

golang package

See godoc for details.

$ go get github.com/pokemium/hq2xgo
import (
    hq2x "github.com/pokemium/hq2xgo"
)

after, err := hq2x.HQ2x(before) // var before *image.RGBA

Measure benchmark

$ cd cmd/
$ go test -bench .