• Main Page
  • Related Pages
  • Modules
  • Namespaces
  • Classes
  • Files
  • File List

ch_convolve.hh

00001 // Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
00002 //
00003 // This file is part of Olena.
00004 //
00005 // Olena is free software: you can redistribute it and/or modify it under
00006 // the terms of the GNU General Public License as published by the Free
00007 // Software Foundation, version 2 of the License.
00008 //
00009 // Olena is distributed in the hope that it will be useful,
00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012 // General Public License for more details.
00013 //
00014 // You should have received a copy of the GNU General Public License
00015 // along with Olena.  If not, see <http://www.gnu.org/licenses/>.
00016 //
00017 // As a special exception, you may use this file as part of a free
00018 // software project without restriction.  Specifically, if other files
00019 // instantiate templates or use macros or inline functions from this
00020 // file, or you compile this file and link it with other files to produce
00021 // an executable, this file does not by itself cause the resulting
00022 // executable to be covered by the GNU General Public License.  This
00023 // exception does not however invalidate any other reasons why the
00024 // executable file might be covered by the GNU General Public License.
00025 
00026 #ifndef MLN_LINEAR_CH_CONVOLVE_HH
00027 # define MLN_LINEAR_CH_CONVOLVE_HH
00028 
00032 
00033 # include <mln/core/concept/image.hh>
00034 # include <mln/core/concept/window.hh>
00035 # include <mln/core/concept/weighted_window.hh>
00036 # include <mln/trait/ch_value.hh>
00037 # include <mln/value/ops.hh>
00038 
00039 # include <mln/algebra/vec.hh>
00040 
00041 
00044 # define mln_ch_convolve(I, W) \
00045   typename mln::linear::ch_convolve<I, W>::ret
00046 
00047 # define mln_ch_convolve_grad(I, W) \
00048   typename mln::trait::ch_value< I, algebra::vec< I::site::dim, typename mln::linear::ch_convolve<I,W>::ret::value > >::ret
00049 
00050 
00051 
00052 namespace mln
00053 {
00054 
00055   namespace linear
00056   {
00057 
00058     namespace internal
00059     {
00060 
00061       template <bool b, /* = true, i.e., W is a Weighted_Window */
00062                 typename I, typename W>
00063       struct ch_convolve_helper
00064       {
00065         typedef mln_sum_product(mln_value(I), mln_weight(W)) V;
00066         typedef mln_ch_value(I, V) ret;
00067       };
00068 
00069       template <typename I, typename W>
00070       struct ch_convolve_helper<false, I, W>
00071       {
00072         typedef mln_sum_product(mln_value(I), W) V;
00073         typedef mln_ch_value(I, V) ret;
00074       };
00075 
00076     } // end of namespace mln::linear::internal
00077 
00078 
00079     template <typename I, typename W>
00080     struct ch_convolve
00081       : private mlc_and( mlc_is_a(I, Image),
00082                          mlc_is_not_a(W, Window) )::check_t
00083     {
00084     protected:
00085       enum { is_w_win = mlc_is_a(W, Weighted_Window)::value };
00086       typedef internal::ch_convolve_helper<is_w_win, I, W> helper;
00087     public:
00088       typedef mlc_ret(helper) ret;
00089     };
00090 
00091   } // end of namespace mln::linear
00092 
00093 } // end of namespace mln
00094 
00095 
00096 #endif // ! MLN_LINEAR_CH_CONVOLVE_HH

Generated on Thu Sep 8 2011 18:31:39 for Milena (Olena) by  doxygen 1.7.1