/usr/include/boost/gil
NameSizeModeActions
concepts/-0755rm
detail/-0755rm
extension/-0755rm
image_processing/-0755rm
io/-0755rm
algorithm.hpp413330644editdlrm
bit_aligned_pixel_iterator.hpp92000644editdlrm
bit_aligned_pixel_reference.hpp140960644editdlrm
channel.hpp299130644editdlrm
channel_algorithm.hpp230810644editdlrm
cmyk.hpp12960644editdlrm
color_base.hpp220100644editdlrm
color_base_algorithm.hpp298890644editdlrm
color_convert.hpp138510644editdlrm
concepts.hpp8970644editdlrm
deprecated.hpp24770644editdlrm
device_n.hpp35910644editdlrm
dynamic_step.hpp8930644editdlrm
gray.hpp6190644editdlrm
image.hpp204520644editdlrm
image_view.hpp140460644editdlrm
image_view_factory.hpp246250644editdlrm
iterator_from_2d.hpp66480644editdlrm
locator.hpp187860644editdlrm
metafunctions.hpp311860644editdlrm
packed_pixel.hpp92140644editdlrm
pixel.hpp98660644editdlrm
pixel_iterator.hpp53070644editdlrm
pixel_iterator_adaptor.hpp90710644editdlrm
planar_pixel_iterator.hpp100590644editdlrm
planar_pixel_reference.hpp99160644editdlrm
point.hpp68990644editdlrm
position_iterator.hpp50050644editdlrm
premultiply.hpp35210644editdlrm
promote_integral.hpp61850644editdlrm
rgb.hpp14580644editdlrm
rgba.hpp16740644editdlrm
step_iterator.hpp142260644editdlrm
typedefs.hpp134150644editdlrm
utilities.hpp81610644editdlrm
virtual_locator.hpp62880644editdlrm
Edit: /usr/include/boost/gil/deprecated.hpp (2477B)
// // 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 // #ifndef BOOST_GIL_DEPRECATED_HPP #define BOOST_GIL_DEPRECATED_HPP #include /// This file is provided as a courtesy to ease upgrading GIL client code. /// Please make sure your code compiles when this file is not included. #define planar_ptr planar_pixel_iterator #define planar_ref planar_pixel_reference #define membased_2d_locator memory_based_2d_locator #define pixel_step_iterator memory_based_step_iterator #define pixel_image_iterator iterator_from_2d #define equal_channels static_equal #define copy_channels static_copy #define fill_channels static_fill #define generate_channels static_generate #define for_each_channel static_for_each #define transform_channels static_transform #define max_channel static_max #define min_channel static_min #define semantic_channel semantic_at_c template void resize_clobber_image(Img& img, const typename Img::point_t& new_dims) { img.recreate(new_dims); } template void resize_clobber_image(Img& img, const typename Img::x_coord_t& width, const typename Img::y_coord_t& height) { img.recreate(width,height); } template typename T::x_coord_t get_width(const T& a) { return a.width(); } template typename T::y_coord_t get_height(const T& a) { return a.height(); } template typename T::point_t get_dimensions(const T& a) { return a.dimensions(); } template std::size_t get_num_channels(const T& a) { return a.num_channels(); } #define GIL boost::gil #define ADOBE_GIL_NAMESPACE_BEGIN namespace boost { namespace gil { #define ADOBE_GIL_NAMESPACE_END } } #define ByteAdvancableIteratorConcept MemoryBasedIteratorConcept #define byte_advance memunit_advance #define byte_advanced memunit_advanced #define byte_step memunit_step #define byte_distance memunit_distance #define byte_addressable_step_iterator memory_based_step_iterator #define byte_addressable_2d_locator memory_based_2d_locator // These are members of memory-based locators //#define row_bytes row_size // commented out because row_bytes is commonly used #define pix_bytestep pixel_size #endif