-
Notifications
You must be signed in to change notification settings - Fork 25
/
xvycc.js
86 lines (75 loc) · 1.57 KB
/
xvycc.js
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* https://en.wikipedia.org/wiki/XvYCC
*
* Sony xvYCC is extended YCbCr
*
* It uses same transformation as
* SD: ITU-R BT.601
* HD: ITU-R BT.709
*
* But have extended mins/maxes, which (may) result in negative rgb values
*
* https://web.archive.org/web/20130524104850/http://www.sony.net/SonyInfo/technology/technology/theme/xvycc_01.html
*
* //TODO: look for a spec (120$) - there are xvYCC ←→ XYZ conversion formulas
*
* @module color-space/xvycc
*/
import rgb from './rgb.js';
import ypbpr from './ypbpr.js';
var xvycc = {
name: 'xvycc',
min: [0, 0, 0],
max: [255, 255, 255],
channel: ['Y','Cb','Cr'],
alias: ['xvYCC']
};
export default xvycc;
/**
* From analog to digital form.
* Simple scale to min/max ranges
*
* @return {Array} Resulting digitized form
*/
ypbpr.xvycc = function (ypbpr) {
var y = ypbpr[0], pb = ypbpr[1], pr = ypbpr[2];
return [
16 + 219 * y,
128 + 224 * pb,
128 + 224 * pr
];
}
/**
* From digital to analog form.
* Scale to min/max ranges
*/
xvycc.ypbpr = function (xvycc) {
var y = xvycc[0], cb = xvycc[1], cr = xvycc[2];
return [
(y - 16) / 219,
(cb - 128) / 224,
(cr - 128) / 224
];
}
/**
* xvYCC to RGB
* transform through analog form
*
* @param {Array} xvycc RGB values
*
* @return {Array} xvYCC values
*/
xvycc.rgb = function (arr, kb, kr) {
return ypbpr.rgb(xvycc.ypbpr(arr), kb, kr);
};
/**
* RGB to xvYCC
* transform through analog form
*
* @param {Array} xvycc xvYCC values
*
* @return {Array} RGB values
*/
rgb.xvycc = function(arr, kb, kr) {
return ypbpr.xvycc(rgb.ypbpr(arr, kb, kr));
};