File: README.md

package info (click to toggle)
golang-github-mattn-go-ciede2000 0~20170301-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: makefile: 4
file content (27 lines) | stat: -rw-r--r-- 404 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# go-ciede2000

Go implementation of the CIE Delta E 2000 Color-Difference algorithm (CIEDE2000).

This is a golang port of https://github.com/gfiumara/CIEDE2000

## Usage

```go
c1 := &color.RGBA{200, 255, 0, 255}
c2 := &color.RGBA{50, 60, 255, 255}
diff := Diff(c1, c2)
```

## Installation

```
$ go get github.com/mattn/go-ciede2000
```

## License

MIT

## Author

Yasuhiro Matsumoto (a.k.a. mattn)