Boost  v1.57.0
doxygen for www.boost.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
packed_image_type,bit_aligned_image_type

Returns the type of an image whose channels are not byte-aligned. More...

Collaboration diagram for packed_image_type,bit_aligned_image_type:

Classes

struct  boost::gil::packed_image_type< BitField, ChannelBitSizeVector, Layout, Alloc >
 Returns the type of an interleaved packed image: an image whose channels may not be byte-aligned, but whose pixels are byte aligned. More...
 
struct  boost::gil::packed_image1_type< BitField, Size1, Layout, Alloc >
 Returns the type of a single-channel image given its bitfield type, the bit size of its channel and its layout. More...
 
struct  boost::gil::packed_image2_type< BitField, Size1, Size2, Layout, Alloc >
 Returns the type of a two channel image given its bitfield type, the bit size of its channels and its layout. More...
 
struct  boost::gil::packed_image3_type< BitField, Size1, Size2, Size3, Layout, Alloc >
 Returns the type of a three channel image given its bitfield type, the bit size of its channels and its layout. More...
 
struct  boost::gil::packed_image4_type< BitField, Size1, Size2, Size3, Size4, Layout, Alloc >
 Returns the type of a four channel image given its bitfield type, the bit size of its channels and its layout. More...
 
struct  boost::gil::packed_image5_type< BitField, Size1, Size2, Size3, Size4, Size5, Layout, Alloc >
 Returns the type of a five channel image given its bitfield type, the bit size of its channels and its layout. More...
 
struct  boost::gil::bit_aligned_image_type< ChannelBitSizeVector, Layout, Alloc >
 Returns the type of a packed image whose pixels may not be byte aligned. More...
 
struct  boost::gil::bit_aligned_image1_type< Size1, Layout, Alloc >
 Returns the type of a single-channel bit-aligned image given the bit size of its channel and its layout. More...
 
struct  boost::gil::bit_aligned_image2_type< Size1, Size2, Layout, Alloc >
 Returns the type of a two channel bit-aligned image given the bit size of its channels and its layout. More...
 
struct  boost::gil::bit_aligned_image3_type< Size1, Size2, Size3, Layout, Alloc >
 Returns the type of a three channel bit-aligned image given the bit size of its channels and its layout. More...
 
struct  boost::gil::bit_aligned_image4_type< Size1, Size2, Size3, Size4, Layout, Alloc >
 Returns the type of a four channel bit-aligned image given the bit size of its channels and its layout. More...
 
struct  boost::gil::bit_aligned_image5_type< Size1, Size2, Size3, Size4, Size5, Layout, Alloc >
 Returns the type of a five channel bit-aligned image given the bit size of its channels and its layout. More...
 

Detailed Description

Returns the type of an image whose channels are not byte-aligned.

A packed image is an image whose pixels are byte aligned, such as "rgb565".
A bit-aligned image is an image whose pixels are not byte aligned, such as "rgb222".

The sum of the bit sizes of all channels cannot exceed 64.