cvd/integral_image.h

00001 /*
00002         This file is part of the CVD Library.
00003 
00004         Copyright (C) 2005 The Authors
00005 
00006         This library is free software; you can redistribute it and/or
00007         modify it under the terms of the GNU Lesser General Public
00008         License as published by the Free Software Foundation; either
00009         version 2.1 of the License, or (at your option) any later version.
00010 
00011         This library is distributed in the hope that it will be useful,
00012         but WITHOUT ANY WARRANTY; without even the implied warranty of
00013         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014         Lesser General Public License for more details.
00015 
00016         You should have received a copy of the GNU Lesser General Public
00017         License along with this library; if not, write to the Free Software
00018         Foundation, Inc.,
00019     51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
00020 */
00021 
00022 #ifndef CVD_INC_INTEGRAL_IMAGE_H
00023 #define CVD_INC_INTEGRAL_IMAGE_H
00024 
00025 #include <cvd/image.h>
00026 #include <cvd/vision.h>
00027 
00028 namespace CVD
00029 {
00038     template<class S, class D> void integral_image(const SubImage<S>& in, SubImage<D>& out)
00039     {
00040         if( in.size() != out.size())
00041             throw Exceptions::Vision::IncompatibleImageSizes("integral_image");
00042         
00043         //Do the first row. 
00044         D sum = 0;
00045         for(int x=0; x < in.size().x; x++)
00046         {
00047             sum += in[0][x];
00048             out[0][x] = sum;
00049         }
00050 
00051         //Do the remainder of the image
00052         for(int y=1; y < in.size().y; y++)
00053         {
00054             D sum = 0;
00055 
00056             for(int x=0; x < in.size().x; x++)
00057             {
00058                 sum += in[y][x];
00059                 out[y][x] = sum + out[y-1][x];
00060             }
00061         }
00062     }
00063     #ifndef DOXYGEN_IGNORE_INTERNAL
00064         namespace Internal
00065         {
00066             template<class C> class IntegralImage{};
00067 
00068             template<class C>  struct ImagePromise<IntegralImage<C> >
00069             {
00070                 ImagePromise(const SubImage<C>& im)
00071                 :i(im)
00072                 {}
00073 
00074                 const SubImage<C>& i;
00075                 template<class D> void execute(Image<D>& j)
00076                 {
00077                     j.resize(i.size());
00078                     integral_image<C,D>(i, j);
00079                 }
00080             };
00081         };
00082 
00083         template<class C> Internal::ImagePromise<Internal::IntegralImage<C> > integral_image(const SubImage<C>& c)
00084         {
00085             return Internal::ImagePromise<Internal::IntegralImage<C> >(c);
00086         }
00087     #else
00105         template<class S, class D> Image<D> integral_image(const BasicImage<S>& from);
00106 
00107     #endif
00108 
00109 }
00110 
00111 
00112 #endif
00113 

Generated on Wed Feb 18 10:23:01 2009 for CVD by  doxygen 1.5.3