Skip to content

Commit 8d5e1e7

Browse files
committed
Update API comparison, reference, and quickstart for ImageContrastAdjustment
1 parent 84ddeca commit 8d5e1e7

File tree

3 files changed

+19
-13
lines changed

3 files changed

+19
-13
lines changed

docs/src/api_comparison.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ welcome.
2525
| **Intensity & quantization** | | | |
2626
| Clamping | `clamp01`, `clamp01nan` | | |
2727
| Linear scaling | `scaleminmax`, `scalesigned`, etc. | `rescale_intensity` | `imadjust` |
28-
| Nonlinear scaling | `adjust_gamma`, `imstretch` | `adjust_gamma` | `imadjust` |
29-
| Compute histogram | `imhist` | `histogram` | `imhist` |
30-
| Histogram equalization | `histeq` | `equalize_hist` | `histeq` |
31-
| Adaptive equalization | `clahe` | `equalize_adapthist` | `adapthisteq` |
32-
| Reference histogram matching | `histmatch` | `match_histograms` | `imhistmatch` |
28+
| Nonlinear scaling | `GammaCorrection`, `imstretch` | `adjust_gamma` | `imadjust` |
29+
| Compute histogram | `build_histogram` | `histogram` | `imhist` |
30+
| Histogram equalization | `adjust_histogram` | `equalize_hist` | `histeq` |
31+
| Adaptive equalization | `AdaptiveEqualization` | `equalize_adapthist` | `adapthisteq` |
32+
| Reference histogram matching | `adjust_histogram` | `match_histograms` | `imhistmatch` |
3333
| Quantization | map anonymous function | | `imquantize` |
3434
| Threshold estimation | `otsu_threshold` | `threshold_otsu` etc. | `graythresh` etc. |
3535
| | | | |

docs/src/function_reference.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -220,23 +220,28 @@ findlocalminima
220220
### Exposure
221221

222222
```@docs
223-
imhist
223+
build_histogram
224+
adjust_histogram
225+
adjust_histogram!
224226
cliphist
225-
histeq
226-
adjust_gamma
227227
imstretch
228228
imadjustintensity
229229
complement
230-
histmatch
231-
clahe
230+
AdaptiveEqualization
231+
GammaCorrection
232232
```
233233

234234
### Spatial transformations and resizing
235235

236236
```@docs
237237
imresize
238+
imrotate
238239
restrict
239240
warp
241+
warpedview
242+
invwarpedview
243+
WarpedView
244+
InvWarpedView
240245
```
241246

242247
### Image statistics
@@ -247,9 +252,10 @@ maxfinite
247252
maxabsfinite
248253
meanfinite
249254
ssd
250-
ssdn
255+
mse
251256
sad
252-
sadn
257+
mae
258+
entropy
253259
```
254260

255261
### Morphological operations

docs/src/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ Algorithms:
328328
- Resizing and spatial transformations: `restrict`, `imresize`, `warp`
329329
- Filtering: `imfilter`, `imfilter!`, `imfilter_LoG`, `mapwindow`, `imROF`, `padarray`
330330
- Filtering kernels: `Kernel.` or `KernelFactors.`, followed by `ando[345]`, `guassian2d`, `imaverage`, `imdog`, `imlaplacian`, `prewitt`, `sobel`
331-
- Exposure : `imhist`, `histeq`, `adjust_gamma`, `histmatch`, `imadjustintensity`, `imstretch`, `imcomplement`, `clahe`, `cliphist`
331+
- Exposure : `build_histogram`, `adjust_histogram`, `imadjustintensity`, `imstretch`, `imcomplement`, `AdaptiveEqualization`, `GammaCorrection`, `cliphist`
332332
- Gradients: `backdiffx`, `backdiffy`, `forwarddiffx`, `forwarddiffy`, `imgradients`
333333
- Edge detection: `imedge`, `imgradients`, `thin_edges`, `magnitude`, `phase`, `magnitudephase`, `orientation`, `canny`
334334
- Corner detection: `imcorner`, `harris`, `shi_tomasi`, `kitchen_rosenfeld`, `meancovs`, `gammacovs`, `fastcorners`

0 commit comments

Comments
 (0)