| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- //
- // 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_EXTENSION_NUMERIC_CHANNEL_NUMERIC_OPERATIONS_HPP
- #define BOOST_GIL_EXTENSION_NUMERIC_CHANNEL_NUMERIC_OPERATIONS_HPP
- #include <boost/gil/channel.hpp>
- namespace boost { namespace gil {
- // Structures for channel-wise numeric operations
- // Currently defined structures:
- // channel_plus_t (+), channel_minus_t (-),
- // channel_multiplies_t (*), channel_divides_t (/),
- // channel_plus_scalar_t (+s), channel_minus_scalar_t (-s),
- // channel_multiplies_scalar_t (*s), channel_divides_scalar_t (/s),
- // channel_halves_t (/=2), channel_zeros_t (=0), channel_assigns_t (=)
- /// \ingroup ChannelNumericOperations
- /// structure for adding one channel to another
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel1,typename Channel2,typename ChannelR>
- struct channel_plus_t {
- ChannelR operator()(typename channel_traits<Channel1>::const_reference ch1,
- typename channel_traits<Channel2>::const_reference ch2) const {
- return ChannelR(ch1)+ChannelR(ch2);
- }
- };
- /// \ingroup ChannelNumericOperations
- /// structure for subtracting one channel from another
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel1,typename Channel2,typename ChannelR>
- struct channel_minus_t {
- ChannelR operator()(typename channel_traits<Channel1>::const_reference ch1,
- typename channel_traits<Channel2>::const_reference ch2) const {
- return ChannelR(ch1)-ChannelR(ch2);
- }
- };
- /// \ingroup ChannelNumericOperations
- /// structure for multiplying one channel to another
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel1,typename Channel2,typename ChannelR>
- struct channel_multiplies_t {
- ChannelR operator()(typename channel_traits<Channel1>::const_reference ch1,
- typename channel_traits<Channel2>::const_reference ch2) const {
- return ChannelR(ch1)*ChannelR(ch2);
- }
- };
- /// \ingroup ChannelNumericOperations
- /// structure for dividing channels
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel1,typename Channel2,typename ChannelR>
- struct channel_divides_t {
- ChannelR operator()(typename channel_traits<Channel1>::const_reference ch1,
- typename channel_traits<Channel2>::const_reference ch2) const {
- return ChannelR(ch1)/ChannelR(ch2);
- }
- };
- /// \ingroup ChannelNumericOperations
- /// structure for adding a scalar to a channel
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel,typename Scalar,typename ChannelR>
- struct channel_plus_scalar_t {
- ChannelR operator()(typename channel_traits<Channel>::const_reference ch,
- const Scalar& s) const {
- return ChannelR(ch)+ChannelR(s);
- }
- };
- /// \ingroup ChannelNumericOperations
- /// structure for subtracting a scalar from a channel
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel,typename Scalar,typename ChannelR>
- struct channel_minus_scalar_t {
- ChannelR operator()(typename channel_traits<Channel>::const_reference ch,
- const Scalar& s) const {
- return ChannelR(ch-s);
- }
- };
- /// \ingroup ChannelNumericOperations
- /// structure for multiplying a scalar to one channel
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel,typename Scalar,typename ChannelR>
- struct channel_multiplies_scalar_t {
- ChannelR operator()(typename channel_traits<Channel>::const_reference ch,
- const Scalar& s) const {
- return ChannelR(ch)*ChannelR(s);
- }
- };
- /// \ingroup ChannelNumericOperations
- /// structure for dividing a channel by a scalar
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel,typename Scalar,typename ChannelR>
- struct channel_divides_scalar_t {
- ChannelR operator()(typename channel_traits<Channel>::const_reference ch,
- const Scalar& s) const {
- return ChannelR(ch)/ChannelR(s);
- }
- };
- /// \ingroup ChannelNumericOperations
- /// structure for halving a channel
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel>
- struct channel_halves_t {
- typename channel_traits<Channel>::reference
- operator()(typename channel_traits<Channel>::reference ch) const {
- return ch/=2.0;
- }
- };
- /// \ingroup ChannelNumericOperations
- /// structure for setting a channel to zero
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel>
- struct channel_zeros_t {
- typename channel_traits<Channel>::reference
- operator()(typename channel_traits<Channel>::reference ch) const {
- return ch=Channel(0);
- }
- };
- /// \ingroup ChannelNumericOperations
- /// structure for assigning one channel to another
- /// this is a generic implementation; user should specialize it for better performance
- template <typename Channel1,typename Channel2>
- struct channel_assigns_t {
- typename channel_traits<Channel2>::reference
- operator()(typename channel_traits<Channel1>::const_reference ch1,
- typename channel_traits<Channel2>::reference ch2) const {
- return ch2=Channel2(ch1);
- }
- };
- }} // namespace boost::gil
- #endif
|