initial commit

This commit is contained in:
2026-07-08 17:33:43 +03:30
commit d9eedb3d8e
5 changed files with 126 additions and 0 deletions

11
MATH_REFERENCE.md Normal file
View File

@@ -0,0 +1,11 @@
# Mathematical Reference Table
| Algorithm | Formula / Mask | Source |
| :--- | :--- | :--- |
| **Power-Law** | $s = c \cdot r^\gamma$ | [4] |
| **Histogram Eq** | $s_k = \sum_{j=0}^{k} n_j / n$ | [17] |
| **Laplacian Mask** | `[0 -1 0; -1 4 -1; 0 -1 0]` | [20, 21] |
| **Sobel (Gx)** | `[-1 -2 -1; 0 0 0; 1 2 1]` | [23, 24] |
| **Gaussian Blur** | $H(u,v) = e^{-D^2(u,v)/2\sigma^2}$ | [28] |
| **RGB to CMY** | `[C M Y] = - [R G B]` | [29] |
| **Image Averaging**| $\bar{g}(x,y) = \frac{1}{K} \sum_{i=1}^{K} g_i(x,y)$ | [25, 26, 30] |