8235ee645a
* Hide convolve_1d and convolve_2d in namespace detail * Hide kernel_2d in namespace detail. * Tidy up naming of horizontal/vertical to y/x for kernel center. Following @lpranam comments on planned changes to convolve_2d, which will not be ready for Boost 1.72, @mloskot proposed to hide the function as implementation detail, https://lists.boost.org/boost-gil/2019/10/0316.php, until it is ready and @stefanseefeld agreed on the proposal, https://lists.boost.org/boost-gil/2019/10/0320.php.
80 lines
2.9 KiB
C++
80 lines
2.9 KiB
C++
//
|
|
// Copyright 2019 Mateusz Loskot <mateusz at loskot dot net>
|
|
//
|
|
// Distributed under 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/numeric/convolve.hpp>
|
|
|
|
#include <tuple>
|
|
#include <type_traits>
|
|
|
|
#define BOOST_TEST_MODULE test_ext_numeric_colvolve_2d
|
|
#include "unit_test.hpp"
|
|
#include "unit_test_utility.hpp"
|
|
#include "test_fixture.hpp"
|
|
#include "core/image/test_fixture.hpp"
|
|
|
|
namespace gil = boost::gil;
|
|
namespace fixture = boost::gil::test::fixture;
|
|
|
|
BOOST_AUTO_TEST_SUITE(convolve_1d)
|
|
|
|
BOOST_AUTO_TEST_CASE_TEMPLATE(image_1x1_kernel_1x1_identity, Image, fixture::image_types)
|
|
{
|
|
auto const img = fixture::create_image<Image>(1, 1, 7);
|
|
Image img_out(img);
|
|
|
|
using pixel_t = typename Image::value_type;
|
|
using channel_t = typename gil::channel_type<pixel_t>::type;
|
|
auto const kernel = fixture::create_kernel<channel_t>({1});
|
|
gil::detail::convolve_1d<pixel_t>(const_view(img_out), kernel, view(img_out));
|
|
|
|
// 1x1 kernel reduces convolution to multiplication
|
|
BOOST_TEST(gil::const_view(img).front() == gil::const_view(img_out).front());
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE_TEMPLATE(image_1x1_kernel_3x3_identity, Image, fixture::image_types)
|
|
{
|
|
auto const img = fixture::create_image<Image>(1, 1, 7);
|
|
Image img_out(img);
|
|
|
|
using pixel_t = typename Image::value_type;
|
|
using channel_t = typename gil::channel_type<pixel_t>::type;
|
|
auto const kernel = fixture::create_kernel<channel_t>({0, 0, 0, 0, 1, 0, 0, 0, 0});
|
|
gil::detail::convolve_1d<pixel_t>(const_view(img_out), kernel, view(img_out));
|
|
|
|
BOOST_TEST(gil::const_view(img).front() == gil::const_view(img_out).front());
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE_TEMPLATE(image_3x3_kernel_3x3_identity, Image, fixture::image_types)
|
|
{
|
|
using pixel_t = typename Image::value_type;
|
|
using channel_t = typename gil::channel_type<pixel_t>::type;
|
|
auto const img = fixture::generate_image<Image>(3, 3, fixture::random_value<channel_t>{});
|
|
Image img_out(img);
|
|
|
|
auto const kernel = fixture::create_kernel<channel_t>({0, 0, 0, 0, 1, 0, 0, 0, 0});
|
|
gil::detail::convolve_1d<pixel_t>(const_view(img_out), kernel, view(img_out));
|
|
|
|
BOOST_TEST(gil::equal_pixels(gil::const_view(img), gil::const_view(img_out)));
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE_TEMPLATE(image_5x5_kernel_3x3_identity, Image, fixture::image_types)
|
|
{
|
|
using pixel_t = typename Image::value_type;
|
|
using channel_t = typename gil::channel_type<pixel_t>::type;
|
|
auto const img = fixture::generate_image<Image>(5, 5, fixture::random_value<channel_t>{});
|
|
Image img_out(img);
|
|
|
|
auto const kernel = fixture::create_kernel<channel_t>({0, 0, 0, 0, 1, 0, 0, 0, 0});
|
|
gil::detail::convolve_1d<pixel_t>(const_view(img_out), kernel, view(img_out));
|
|
// TODO: Test different boundary options
|
|
|
|
BOOST_TEST(gil::equal_pixels(gil::const_view(img), gil::const_view(img_out)));
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|