This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git
The following commit(s) were added to refs/heads/master by this push:
new 357f3b8c Javadoc
357f3b8c is described below
commit 357f3b8c012a0383631b563471766254aef8c87b
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Dec 14 13:53:47 2023 -0500
Javadoc
---
.../org/apache/commons/imaging/color/ColorConversions.java | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git
a/src/main/java/org/apache/commons/imaging/color/ColorConversions.java
b/src/main/java/org/apache/commons/imaging/color/ColorConversions.java
index 7e311f4c..2588db72 100644
--- a/src/main/java/org/apache/commons/imaging/color/ColorConversions.java
+++ b/src/main/java/org/apache/commons/imaging/color/ColorConversions.java
@@ -19,19 +19,19 @@ package org.apache.commons.imaging.color;
public final class ColorConversions {
// White reference
- /** see:
https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB[10] */
+ /** See:
https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB[10] */
private static final double REF_X = 95.047; // Observer= 2°, Illuminant=
D65
- /** see:
https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB[10] */
+ /** See:
https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB[10] */
private static final double REF_Y = 100.000;
- /** see:
https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB[10] */
+ /** See:
https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB[10] */
private static final double REF_Z = 108.883;
- /** see:
https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB[10] */
+ /** See:
https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB[10] */
private static final double XYZ_m = 7.787037; // match in slope. Note
commonly seen 7.787 gives worse results
- /** see:
https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB[10] */
+ /** See:
https://en.wikipedia.org/wiki/CIELAB_color_space#From_CIEXYZ_to_CIELAB[10] */
private static final double XYZ_t0 = 0.008856;
public static int convertCieLabToArgbTest(final int cieL, final int cieA,
final int cieB) {