// // Copyright 2019 Mateusz Loskot // Copyright 2005-2007 Adobe Systems Incorporated // // 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 #include #include #include #include #include #include #include #include #include // for compatibility with Boost.Test #include #include #include #include namespace boost { namespace gil { namespace test { namespace fixture { template class pixel_value { public: using type = Pixel; using pixel_t = type; type pixel_{}; pixel_value() = default; explicit pixel_value(pixel_t const& pixel) : pixel_(pixel) // test copy constructor { type temp_pixel; // test default constructor boost::ignore_unused(temp_pixel); boost::function_requires >(); } }; // Alias compatible with naming of equivalent class in the test/legacy/pixel.cpp // The core suffix indicates `Pixel` is GIL core pixel type. template using value_core = pixel_value; template struct pixel_reference : pixel_value < typename std::remove_reference::type, Tag > { static_assert( std::is_reference::value || gil::is_planar::value, // poor-man test for specialization of planar_pixel_reference "PixelRef must be reference or gil::planar_pixel_reference"); using type = PixelRef; using pixel_t = typename std::remove_reference::type; using parent_t = pixel_value; using value_t = typename pixel_t::value_type; type pixel_{}; // reference pixel_reference() : parent_t{}, pixel_(parent_t::pixel_) {} explicit pixel_reference(value_t const& pixel) : parent_t(pixel), pixel_(parent_t::pixel_) { boost::function_requires>(); } }; // Alias compatible with naming of equivalent class in the test/legacy/pixel.cpp // The core suffix indicates `Pixel` is GIL core pixel type. template using reference_core = pixel_reference; // Metafunction to yield nested type of a representative pixel type template using nested_type = typename PixelValueOrReference::type; // Metafunction to yield nested type of a representative pixel_t type template using nested_pixel_type = typename PixelValueOrReference::pixel_t; // Subset of pixel models that covers all color spaces, channel depths, // reference/value, planar/interleaved, const/mutable. // Operations like color conversion will be invoked on pairs of those. using representative_pixel_types= ::boost::mp11::mp_list < value_core, reference_core, value_core, reference_core, value_core, reference_core, reference_core, // immutable reference reference_core >; // List of all integer-based core pixel typedefs (i.e. with cv-qualifiers) using pixel_integer_types = ::boost::mp11::mp_list < gil::gray8_pixel_t, gil::gray8s_pixel_t, gil::gray16_pixel_t, gil::gray16s_pixel_t, gil::gray32_pixel_t, gil::gray32s_pixel_t, gil::bgr8_pixel_t, gil::bgr8s_pixel_t, gil::bgr16_pixel_t, gil::bgr16s_pixel_t, gil::bgr32_pixel_t, gil::bgr32s_pixel_t, gil::rgb8_pixel_t, gil::rgb8s_pixel_t, gil::rgb16_pixel_t, gil::rgb16s_pixel_t, gil::rgb32_pixel_t, gil::rgb32s_pixel_t, gil::abgr8_pixel_t, gil::abgr8s_pixel_t, gil::abgr16_pixel_t, gil::abgr16s_pixel_t, gil::abgr32_pixel_t, gil::abgr32s_pixel_t, gil::bgra8_pixel_t, gil::bgra8s_pixel_t, gil::bgra16_pixel_t, gil::bgra16s_pixel_t, gil::bgra32_pixel_t, gil::bgra32s_pixel_t, gil::cmyk8_pixel_t, gil::cmyk8s_pixel_t, gil::cmyk16_pixel_t, gil::cmyk16s_pixel_t, gil::cmyk32_pixel_t, gil::cmyk32s_pixel_t, gil::rgba8_pixel_t, gil::rgba8s_pixel_t, gil::rgba16_pixel_t, gil::rgba16s_pixel_t, gil::rgba32_pixel_t, gil::rgba32s_pixel_t >; // List of all integer-based core pixel typedefs (i.e. with cv-qualifiers) using pixel_float_types = ::boost::mp11::mp_list < gil::gray32f_pixel_t, gil::bgr32f_pixel_t, gil::rgb32f_pixel_t, gil::abgr32f_pixel_t, gil::bgra32f_pixel_t, gil::cmyk32f_pixel_t, gil::rgba32f_pixel_t >; // List of all core pixel types (i.e. without cv-qualifiers) using pixel_types = ::boost::mp11::mp_append < pixel_integer_types, pixel_float_types >; // List of all core pixel typedefs (i.e. with cv-qualifiers) using pixel_typedefs = ::boost::mp11::mp_append < pixel_integer_types, pixel_float_types, ::boost::mp11::mp_list < gil::gray8c_pixel_t, gil::gray8sc_pixel_t, gil::gray16c_pixel_t, gil::gray16sc_pixel_t, gil::gray32c_pixel_t, gil::gray32fc_pixel_t, gil::gray32sc_pixel_t, gil::bgr8c_pixel_t, gil::bgr8sc_pixel_t, gil::bgr16c_pixel_t, gil::bgr16sc_pixel_t, gil::bgr32c_pixel_t, gil::bgr32fc_pixel_t, gil::bgr32sc_pixel_t, gil::rgb8c_pixel_t, gil::rgb8sc_pixel_t, gil::rgb16c_pixel_t, gil::rgb16sc_pixel_t, gil::rgb32c_pixel_t, gil::rgb32fc_pixel_t, gil::rgb32sc_pixel_t, gil::abgr8c_pixel_t, gil::abgr8sc_pixel_t, gil::abgr16c_pixel_t, gil::abgr16sc_pixel_t, gil::abgr32c_pixel_t, gil::abgr32fc_pixel_t, gil::abgr32sc_pixel_t, gil::bgra8c_pixel_t, gil::bgra8sc_pixel_t, gil::bgra16c_pixel_t, gil::bgra16sc_pixel_t, gil::bgra32c_pixel_t, gil::bgra32fc_pixel_t, gil::bgra32sc_pixel_t, gil::cmyk8c_pixel_t, gil::cmyk8sc_pixel_t, gil::cmyk16c_pixel_t, gil::cmyk16sc_pixel_t, gil::cmyk32c_pixel_t, gil::cmyk32fc_pixel_t, gil::cmyk32sc_pixel_t, gil::rgba8c_pixel_t, gil::rgba8sc_pixel_t, gil::rgba16c_pixel_t, gil::rgba16sc_pixel_t, gil::rgba32c_pixel_t, gil::rgba32fc_pixel_t, gil::rgba32sc_pixel_t > >; struct not_a_pixel_type {}; using non_pixels = ::boost::mp11::mp_list < not_a_pixel_type, char, short, int, long, double, float, std::size_t, std::true_type, std::false_type >; }}}} // namespace boost::gil::test::fixture