Skip to content

Commit 8562084

Browse files
committed
[css-color-hdr] Added missing scaling factor #11250
1 parent db63885 commit 8562084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

css-color-hdr-1/deltaEITP.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ function deltaEITP (reference, sample) {
1212
let ΔI = I1 - I2;
1313
let ΔT = 0.5 * (Ct1 - Ct2);
1414
let ΔP = Cp1 - Cp2;
15-
return Math.sqrt(ΔI ** 2 + ΔT ** 2 + ΔP ** 2);
15+
return 720 * Math.sqrt(ΔI ** 2 + ΔT ** 2 + ΔP ** 2);
1616
}

0 commit comments

Comments
 (0)