2
0
mirror of https://github.com/boostorg/gil.git synced 2026-01-19 04:12:11 +00:00
Files
gil/example/histogram_matching.cpp
Nicolas Herry 0b24f4cdbf Ensure all examples build without error (#628)
* Added all missing examples, dodgy Jamfile still
* Fixed attributions and Jamfile indent
* One readme per example: synopsis, build and exec reqs
* Cleaned up example/convolve2d.cpp
* Added example target to root Jamfile

Closes #436
2021-11-10 18:21:02 +01:00

53 lines
1.4 KiB
C++

//
// Copyright 2020 Debabrata Mandal <mandaldebabrata123@gmail.com>
//
// Use, modification and distribution are subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
#include <boost/gil.hpp>
#include <boost/gil/extension/io/png.hpp>
#include <boost/gil/image_processing/histogram_matching.hpp>
#include <vector>
using namespace boost::gil;
// Demonstrates Histogram Matching
// See also:
// histogram_equalization.cpp - Regular Histogram Equalization
// adaptive_he.cpp - Adaptive Histogram Equalization
// histogram.cpp - General use of histograms in GIL
std::vector<std::vector<bool>> get_mask(gray8_view_t const& mask)
{
std::vector<std::vector<bool>> mask_vec(mask.height(), std::vector<bool>(mask.width(), 0));
for (std::size_t i = 0; i < mask.height(); i++)
{
for (std::size_t j = 0; j < mask.width(); j++)
{
mask_vec[i][j] = mask(j, i);
}
}
return mask_vec;
}
int main()
{
gray8_image_t img;
read_image("test_adaptive.png", img, png_tag{});
gray8_image_t ref_img;
read_image("test_adaptive.png", ref_img, png_tag{});
gray8_image_t img_out(img.dimensions());
boost::gil::histogram_matching(view(img), view(ref_img), view(img_out));
write_view("histogram_gray_matching.png", view(img_out), png_tag{});
return 0;
}