-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "ssim",
"version": "0.0.0",
"description": "The structural similarity (SSIM) index is a method for measuring the similarity between two images. The SSIM index is a full reference metric; in other words, the measuring of image quality based on an initial uncompressed or distortion-free image as reference. SSIM is designed to improve on traditional methods like peak signal-to-noise ratio (PSNR) and mean squared error (MSE), which have proven to be inconsistent with human eye perception.",
"main": "src/ssim.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/bytespider/ssim"
},
"keywords": [
"psnr",
"mse",
"ratio",
"signal",
"structural",
"similarity"
],
"author": {
"name": "Rob Griffiths",
"email": "[email protected]",
"url": "http://bytespider.eu"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bytespider/ssim/issues"
},
"devDependencies": {
"tap": "~0.4.8",
"average": "0.0.1"
},
"dependencies": {
"average": "~0.0.1",
"variance": "~0.0.1",
"covariance": "~0.0.0"
}
}