Skip to content

Commit d1b3ae4

Browse files
committed
Includes ImageContrastAdjustment functions
1 parent 672b3ba commit d1b3ae4

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
99
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
1010
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
1111
ImageAxes = "2803e5a7-5153-5ecf-9a86-9b4c37f5f5ac"
12+
ImageContrastAdjustment = "f332f351-ec65-5f6a-b3d1-319c6670881a"
1213
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
1314
ImageDraw = "4381153b-2b60-58ae-a1ba-fd683676385f"
1415
ImageFeatures = "92ff4b2b-8094-53d3-b29d-97f740f06cef"
@@ -38,6 +39,7 @@ FileIO = "1"
3839
FixedPointNumbers = "0"
3940
ImageAxes = "0"
4041
ImageCore = "0"
42+
ImageContrastAdjustment = "0.3"
4143
ImageDraw = "0"
4244
ImageFeatures = "0"
4345
ImageFiltering = "0"

docs/make.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using Documenter, DemoCards
22
using Images, ImageFiltering, ImageSegmentation, ImageFeatures, PaddedViews
3+
using ImageContrastAdjustment
34

45
branch = "master"
56

@@ -11,7 +12,7 @@ format = Documenter.HTML(edit_link = "source",
1112
assets = [theme])
1213

1314
makedocs(modules = [Images, ImageCore, Colors, ColorTypes, FixedPointNumbers, ImageAxes,
14-
ImageFeatures, ImageFiltering, ImageMetadata,
15+
ImageFeatures, ImageFiltering, ImageMetadata, ImageContrastAdjustment,
1516
ImageSegmentation, ImageTransformations, PaddedViews, ImageMorphology],
1617
format = format,
1718
sitename = "JuliaImages",

docs/src/api_comparison.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ welcome.
2424
| | | | |
2525
| **Intensity & quantization** | | | |
2626
| Clamping | `clamp01`, `clamp01nan` | | |
27-
| Linear scaling | `scaleminmax`, `scalesigned`, etc. | `rescale_intensity` | `imadjust` |
28-
| Nonlinear scaling | `GammaCorrection`, `imstretch` | `adjust_gamma` | `imadjust` |
27+
| Linear scaling | `LinearStretching`, `scaleminmax`, etc. | `rescale_intensity` | `imadjust` |
28+
| Nonlinear scaling | `GammaCorrection` | `adjust_gamma` | `imadjust` |
2929
| Compute histogram | `build_histogram` | `histogram` | `imhist` |
30-
| Histogram equalization | `adjust_histogram` | `equalize_hist` | `histeq` |
30+
| Histogram equalization | `Equalization ` | `equalize_hist` | `histeq` |
3131
| Adaptive equalization | `AdaptiveEqualization` | `equalize_adapthist` | `adapthisteq` |
32-
| Reference histogram matching | `adjust_histogram` | `match_histograms` | `imhistmatch` |
32+
| Reference histogram matching | `Matching ` | `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: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,12 +264,16 @@ findlocalminima
264264
build_histogram
265265
adjust_histogram
266266
adjust_histogram!
267+
AdaptiveEqualization
268+
Equalization
269+
GammaCorrection
270+
LinearStretching
271+
Matching
272+
MidwayEqualization
267273
cliphist
268274
imstretch
269275
imadjustintensity
270276
complement
271-
AdaptiveEqualization
272-
GammaCorrection
273277
```
274278

275279
### Spatial transformations and resizing

0 commit comments

Comments
 (0)