Boost GIL


Modules
packed_channel_value

Modules

 packed_channel_reference
 

Detailed Description

A channel adaptor that modifies the range of the source channel. Models: ChannelValueConcept

Represents the value of an unsigned integral channel operating over a bit range. Models: ChannelValueConcept Example:

// A 4-bit unsigned integral channel.
typedef packed_channel_value<4> bits4;
assert(channel_traits<bits4>::min_value()==0);
assert(channel_traits<bits4>::max_value()==15);
assert(sizeof(bits4)==1);
BOOST_STATIC_ASSERT((boost::is_integral<bits4>::value));