MSCN.tex 967 B

12345678910111213141516171819202122
  1. \chapter{ Mean Subtracted Contrast Normalized (MSCN)}
  2. \label{appendices_mscn_transformation}
  3. In order to compute MSCN matrix, we first need to convert our rgb image in grayscale image. MSCN will extract (Natural Scene Structure) NSS information from this grayscale image. An operation is applied to luminance image $I(i, j)$ to produce :
  4. \begin{equation}
  5. \hat{I}(i, j) = {I(i, j) - \mu(i, j)} \over {\sigma(i, j) + C}
  6. \label{mscn_equation}
  7. \end{equation}
  8. \noindent
  9. où $i \in 1, 2...M, j \in 1, 2...N$ sont les indices spatiaux, $M$, $N$ sont la hauteur et la largeur de l'image respectivement, $C$ est une constante, de valeur $1$ pour prévenir des instabilité et où
  10. \begin{equation}
  11. \mu(i, j) = \sum_{k=-K}^{K}{\sum_{l=-L}^{L} w_{k,l}I_{k,l}(i, j)}
  12. \label{mscn_mu_equation}
  13. \end{equation}
  14. \begin{equation}
  15. \sigma(i, j) = \sqrt{\sum_{k=-K}^{K}{\sum_{l=-L}^{L} w_{k,l}(I_{k,l}(i, j) - \mu(i, j))^2}}
  16. \label{mscn_sigma_equation}
  17. \end{equation}