/ / More...
#include <cassert>#include <cstddef>#include "gil_config.hpp"#include "metafunctions.hpp"#include "gray.hpp"#include "color_convert.hpp"

Namespaces | |
| boost | |
| Duration formatting facet for input. | |
| boost::gil | |
| boost::gil::detail | |
Functions | |
| template<typename Iterator > | |
| type_from_x_iterator< Iterator > ::view_t | boost::gil::interleaved_view (std::size_t width, std::size_t height, Iterator pixels, std::ptrdiff_t rowsize_in_bytes) |
| Constructing image views from raw interleaved pixel data. More... | |
| template<typename Iterator > | |
| type_from_x_iterator< Iterator > ::view_t | boost::gil::interleaved_view (point2< std::size_t > dim, Iterator pixels, std::ptrdiff_t rowsize_in_bytes) |
| Constructing image views from raw interleaved pixel data. More... | |
| template<typename HomogeneousView > | |
| detail::channel_pointer_type < HomogeneousView >::type | boost::gil::interleaved_view_get_raw_data (const HomogeneousView &view) |
| Returns C pointer to the the channels of an interleaved homogeneous view. More... | |
| template<typename HomogeneousView > | |
| detail::channel_pointer_type < HomogeneousView >::type | boost::gil::planar_view_get_raw_data (const HomogeneousView &view, int plane_index) |
| Returns C pointer to the the channels of a given color plane of a planar homogeneous view. More... | |
| template<typename DstP , typename View , typename CC > | |
| color_converted_view_type < View, DstP, CC >::type | boost::gil::color_converted_view (const View &src, CC cc) |
| view of a different color space with a user defined color-converter More... | |
| template<typename DstP , typename View > | |
| color_converted_view_type < View, DstP >::type | boost::gil::color_converted_view (const View &src) |
| overload of generic color_converted_view with the default color-converter More... | |
| template<typename View > | |
| dynamic_y_step_type< View >::type | boost::gil::flipped_up_down_view (const View &src) |
| template<typename View > | |
| dynamic_x_step_type< View >::type | boost::gil::flipped_left_right_view (const View &src) |
| template<typename View > | |
| dynamic_xy_step_transposed_type < View >::type | boost::gil::transposed_view (const View &src) |
| template<typename View > | |
| dynamic_xy_step_transposed_type < View >::type | boost::gil::rotated90cw_view (const View &src) |
| template<typename View > | |
| dynamic_xy_step_transposed_type < View >::type | boost::gil::rotated90ccw_view (const View &src) |
| template<typename View > | |
| dynamic_xy_step_type< View >::type | boost::gil::rotated180_view (const View &src) |
| template<typename View > | |
| View | boost::gil::subimage_view (const View &src, const typename View::point_t &topleft, const typename View::point_t &dimensions) |
| template<typename View > | |
| View | boost::gil::subimage_view (const View &src, int xMin, int yMin, int width, int height) |
| template<typename View > | |
| dynamic_xy_step_type< View >::type | boost::gil::subsampled_view (const View &src, typename View::coord_t xStep, typename View::coord_t yStep) |
| template<typename View > | |
| dynamic_xy_step_type< View >::type | boost::gil::subsampled_view (const View &src, const typename View::point_t &step) |
| template<typename View > | |
| nth_channel_view_type< View >::type | boost::gil::nth_channel_view (const View &src, int n) |
| template<int K, typename View > | |
| kth_channel_view_type< K, View > ::type | boost::gil::kth_channel_view (const View &src) |
/ /
Methods for constructing image views from raw data or other image views /