Boost GIL


Classes
packed_image_type,bit_aligned_image_type

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

Classes

struct  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  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  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  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  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  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  bit_aligned_image_type< ChannelBitSizeVector, Layout, Alloc >
 Returns the type of a packed image whose pixels may not be byte aligned. For example, an "rgb222" image is bit-aligned because its pixel spans six bits. More...
 
struct  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  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  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  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  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.