lab.tex 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. L*a*b est otbenu en utilisant la transformation XYZ de la matrice d'image (espace CIZ XYZ). Les équations (\ref{eq:Lab_L}), (\ref{eq:Lab_a}), (\ref{eq:Lab_b}) détaillent la manière dont chaque canal est calculé.
  2. \begin{equation}
  3. L = 116 f_y - 16
  4. \label{eq:Lab_L}
  5. \end{equation}
  6. \begin{equation}
  7. a = 500(f_x - f_y)
  8. \label{eq:Lab_a}
  9. \end{equation}
  10. \begin{equation}
  11. b = 200(f_y - f_z)
  12. \label{eq:Lab_b}
  13. \end{equation}
  14. \vspace{1mm}
  15. \begin{equation}
  16. f_x = \left\{
  17. \begin{array}{lr}
  18. \sqrt[3]{x_r} & \text{if } x_r > \epsilon \\
  19. {{\kappa x_r + 16} \over {116}} & \text{otherwise}
  20. \end{array}
  21. \right.
  22. \label{eq:Lab_fx}
  23. \end{equation}
  24. \begin{equation}
  25. f_y = \left\{
  26. \begin{array}{lr}
  27. \sqrt[3]{y_r} & \text{if } y_r > \epsilon \\
  28. {{\kappa y_r + 16} \over {116}} & \text{otherwise}
  29. \end{array}
  30. \right.
  31. \label{Lab_fy}
  32. \end{equation}
  33. \begin{equation}
  34. f_z = \left\{
  35. \begin{array}{lr}
  36. \sqrt[3]{z_r} & \text{if } z_r > \epsilon \\
  37. {{\kappa z_r + 16} \over {116}} & \text{otherwise}
  38. \end{array}
  39. \right.
  40. \label{Lab_fz}
  41. \end{equation}
  42. % default display
  43. \hspace{18mm} $x_r = {{X} \over {X_r}}$,\hspace{2mm} $y_r = {{Y} \over {Y_r}}$, \hspace{2mm} $z_r = {{Z} \over {Z_r}}$
  44. \begin{equation}
  45. \epsilon = \left\{
  46. \begin{array}{lr}
  47. {0.008856} & \text{Actual CIE standard} \\
  48. {216 / 24389} & \text{Intent of the CIE standard}
  49. \end{array}
  50. \right.
  51. \label{Lab_espsilon}
  52. \end{equation}
  53. \begin{equation}
  54. \kappa = \left\{
  55. \begin{array}{lr}
  56. {903.3} & \text{Actual CIE standard} \\
  57. {24389 / 27} & \text{Intent of the CIE standard}
  58. \end{array}
  59. \right.
  60. \label{Lab_kappa}
  61. \end{equation}