You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@
7
7
The smallest, simplest and fastest JavaScript pixel-level image comparison library,
8
8
originally created to compare screenshots in tests.
9
9
10
-
Features accurate [anti-aliased pixels detection](http://www.ee.ktu.lt/journal/2009/7/25_ISSN_1392-1215_Anti-aliased%20Pxel%20and%20Intensity%20Slope%20Detector.pdf)
11
-
and [perceptual color metrics](https://en.wikipedia.org/wiki/YUV).
10
+
Features accurate **anti-aliased pixels detection**
11
+
and **perceptual color difference metrics**.
12
12
13
13
Inspired by [Resemble.js](https://github.com/Huddle/Resemble.js)
14
14
and [Blink-diff](https://github.com/yahoo/blink-diff).
@@ -20,6 +20,11 @@ so it's **blazing fast** and can be used in **any environment** (Node or browser
20
20
var numDiffPixels =pixelmatch(img1, img2, diff, 800, 600, {threshold:0.1});
21
21
```
22
22
23
+
Implements ideas from the following papers:
24
+
25
+
-[Measuring perceived color difference using YIQ NTSC transmission color space in mobile applications](http://www.progmat.uaem.mx:8080/artVol2Num2/Articulo3Vol2Num2.pdf) (2010 Y. Kotsarenko, F. Ramos)
26
+
-[Anti-aliased pixel and intensity slope detector](http://www.ee.ktu.lt/journal/2009/7/25_ISSN_1392-1215_Anti-aliased%20Pxel%20and%20Intensity%20Slope%20Detector.pdf) (2009 V. Vyšniauskas)
0 commit comments