Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renamed adaptive_he to adaptive_histogram_equalization #638

Merged
merged 1 commit into from
Apr 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ project
# TODO: Add missing examples

local sources =
adaptive_he.cpp
adaptive_histogram_equalization.cpp
adaptive_threshold.cpp
affine.cpp
anisotropic_diffusion.cpp
Expand Down
20 changes: 0 additions & 20 deletions example/adaptive_he.md

This file was deleted.

20 changes: 20 additions & 0 deletions example/adaptive_histogram_equalization.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Adaptive Histogram Equalization

Adaptive Histogram Equalization (AHE) capabilities in GIL are demonstrated by the program `adaptive_histogram_equalization`, compiled from the sources `example/adaptive_histogram_equalization.cpp`.

## Synopsis
`adaptive_histogram_equalization`

The program doesn't take any argument on the command line.

`adaptive_histogram_equalization` expects to find an image called `test_adaptive.png` in the current directory, and produces the image `out-adaptive.png` in return.

## Specific requirements

### Build requirements
- A C++ compiler compliant with C++11 or above
- The PNG library installed and configured.

### Execution requirements
- `adaptive_histogram_equalization` expects to find an image called `test_adaptive.png` in the current directory.

2 changes: 1 addition & 1 deletion example/histogram.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ using namespace boost::gil;

// See also:
// histogram_equalization.cpp - Regular Histogram Equalization
// adaptive_he.cpp - Adaptive Histogram Equalization
// adaptive_histogram_equalization.cpp - Adaptive Histogram Equalization
// histogram_matching.cpp - Reference-based histogram computation

int main()
Expand Down
2 changes: 1 addition & 1 deletion example/histogram_equalization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ using namespace boost::gil;

// See also:
// histogram.cpp - General use of histograms in GIL
// adaptive_he.cpp - Adaptive Histogram Equalization
// adaptive_histogram_equalization.cpp - Adaptive Histogram Equalization
// histogram_matching.cpp - Reference-based histogram computation

int main()
Expand Down
2 changes: 1 addition & 1 deletion example/histogram_matching.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ using namespace boost::gil;

// See also:
// histogram_equalization.cpp - Regular Histogram Equalization
// adaptive_he.cpp - Adaptive Histogram Equalization
// adaptive_histogram_equalization.cpp - Adaptive Histogram Equalization
// histogram.cpp - General use of histograms in GIL

std::vector<std::vector<bool>> get_mask(gray8_view_t const& mask)
Expand Down