8#ifndef BOOST_GIL_IO_TYPEDEFS_HPP
9#define BOOST_GIL_IO_TYPEDEFS_HPP
11#ifdef BOOST_GIL_IO_ENABLE_GRAY_ALPHA
12#include <boost/gil/extension/toolbox/color_spaces/gray_alpha.hpp>
15#include <boost/gil/image.hpp>
16#include <boost/gil/point.hpp>
17#include <boost/gil/utilities.hpp>
22namespace boost {
namespace gil {
24struct double_zero {
static double apply() {
return 0.0; } };
25struct double_one {
static double apply() {
return 1.0; } };
27using byte_t =
unsigned char;
28using byte_vector_t = std::vector<byte_t>;
34template<>
struct is_floating_point<gil::
float32_t> : std::true_type {};
35template<>
struct is_floating_point<gil::
float64_t> : std::true_type {};
39namespace boost {
namespace gil {
44using gray1_image_t = bit_aligned_image1_type<1, gray_layout_t>::type;
45using gray2_image_t = bit_aligned_image1_type<2, gray_layout_t>::type;
46using gray4_image_t = bit_aligned_image1_type<4, gray_layout_t>::type;
47using gray6_image_t = bit_aligned_image1_type<6, gray_layout_t>::type;
48using gray10_image_t = bit_aligned_image1_type<10, gray_layout_t>::type;
49using gray12_image_t = bit_aligned_image1_type<12, gray_layout_t>::type;
50using gray14_image_t = bit_aligned_image1_type<14, gray_layout_t>::type;
51using gray24_image_t = bit_aligned_image1_type<24, gray_layout_t>::type;
53using gray64f_pixel_t = pixel<double, gray_layout_t>;
55#ifdef BOOST_GIL_IO_ENABLE_GRAY_ALPHA
56using gray_alpha8_pixel_t = pixel<uint8_t, gray_alpha_layout_t>;
57using gray_alpha16_pixel_t = pixel<uint16_t, gray_alpha_layout_t>;
58using gray_alpha64f_pixel_t = pixel<double, gray_alpha_layout_t>;
61using rgb64f_pixel_t = pixel<double, rgb_layout_t>;
62using rgba64f_pixel_t = pixel<double, rgba_layout_t>;
63using gray64f_image_t = image<gray64f_pixel_t, false>;
65#ifdef BOOST_GIL_IO_ENABLE_GRAY_ALPHA
66using gray_alpha8_image_t = image<gray_alpha8_pixel_t, false>;
67using gray_alpha16_image_t = image<gray_alpha16_pixel_t, false>;
68using gray_alpha32f_image_t = image<gray_alpha32f_pixel_t, false>;
69using gray_alpha32f_planar_image_t = image<gray_alpha32f_pixel_t, true>;
70using gray_alpha64f_image_t = image<gray_alpha64f_pixel_t, false>;
71using gray_alpha64f_planar_image_t = image<gray_alpha64f_pixel_t, true>;
75using rgb64f_image_t = image<rgb64f_pixel_t, false>;
76using rgb64f_planar_image_t = image<rgb64f_pixel_t, true>;
77using rgba64f_image_t = image<rgba64f_pixel_t, false>;
78using rgba64f_planar_image_t = image<rgba64f_pixel_t, true>;
scoped_channel_value< double, float_point_zero< double >, float_point_one< double > > float64_t
64-bit floating point channel type with range [0.0f ... 1.0f]. Models ChannelValueConcept
Definition: typedefs.hpp:157
scoped_channel_value< float, float_point_zero< float >, float_point_one< float > > float32_t
32-bit floating point channel type with range [0.0f ... 1.0f]. Models ChannelValueConcept
Definition: typedefs.hpp:153
defined(BOOST_NO_CXX17_HDR_MEMORY_RESOURCE)
Definition: algorithm.hpp:36