![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/include/boost/gil/io/ |
Upload File : |
// // Copyright 2007-2008 Christian Henning // // 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 // #ifndef BOOST_GIL_IO_TYPEDEFS_HPP #define BOOST_GIL_IO_TYPEDEFS_HPP #ifdef BOOST_GIL_IO_ENABLE_GRAY_ALPHA #include <boost/gil/extension/toolbox/color_spaces/gray_alpha.hpp> #endif // BOOST_GIL_IO_ENABLE_GRAY_ALPHA #include <boost/gil/image.hpp> #include <boost/gil/point.hpp> #include <boost/gil/utilities.hpp> #include <boost/type_traits/is_base_of.hpp> #include <vector> namespace boost { namespace gil { struct double_zero { static double apply() { return 0.0; } }; struct double_one { static double apply() { return 1.0; } }; using byte_t = unsigned char; using byte_vector_t = std::vector<byte_t>; }} // namespace boost::gil namespace boost { template<> struct is_floating_point<gil::float32_t> : mpl::true_ {}; template<> struct is_floating_point<gil::float64_t> : mpl::true_ {}; } // namespace boost namespace boost { namespace gil { ///@todo We should use boost::preprocessor here. /// TODO: NO! Please do not use preprocessor here! --mloskot using gray1_image_t = bit_aligned_image1_type<1, gray_layout_t>::type; using gray2_image_t = bit_aligned_image1_type<2, gray_layout_t>::type; using gray4_image_t = bit_aligned_image1_type<4, gray_layout_t>::type; using gray6_image_t = bit_aligned_image1_type<6, gray_layout_t>::type; using gray10_image_t = bit_aligned_image1_type<10, gray_layout_t>::type; using gray12_image_t = bit_aligned_image1_type<12, gray_layout_t>::type; using gray14_image_t = bit_aligned_image1_type<14, gray_layout_t>::type; using gray24_image_t = bit_aligned_image1_type<24, gray_layout_t>::type; using gray64f_pixel_t = pixel<double, gray_layout_t>; #ifdef BOOST_GIL_IO_ENABLE_GRAY_ALPHA using gray_alpha8_pixel_t = pixel<uint8_t, gray_alpha_layout_t>; using gray_alpha16_pixel_t = pixel<uint16_t, gray_alpha_layout_t>; using gray_alpha64f_pixel_t = pixel<double, gray_alpha_layout_t>; #endif // BOOST_GIL_IO_ENABLE_GRAY_ALPHA using rgb64f_pixel_t = pixel<double, rgb_layout_t>; using rgba64f_pixel_t = pixel<double, rgba_layout_t>; using gray64f_image_t = image<gray64f_pixel_t, false>; #ifdef BOOST_GIL_IO_ENABLE_GRAY_ALPHA using gray_alpha8_image_t = image<gray_alpha8_pixel_t, false>; using gray_alpha16_image_t = image<gray_alpha16_pixel_t, false>; using gray_alpha32f_image_t = image<gray_alpha32f_pixel_t, false>; using gray_alpha32f_planar_image_t = image<gray_alpha32f_pixel_t, true>; using gray_alpha64f_image_t = image<gray_alpha64f_pixel_t, false>; using gray_alpha64f_planar_image_t = image<gray_alpha64f_pixel_t, true>; #endif // BOOST_GIL_IO_ENABLE_GRAY_ALPHA using rgb64f_image_t = image<rgb64f_pixel_t, false>; using rgb64f_planar_image_t = image<rgb64f_pixel_t, true>; using rgba64f_image_t = image<rgba64f_pixel_t, false>; using rgba64f_planar_image_t = image<rgba64f_pixel_t, true>; }} // namespace boost::gil #endif