00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
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
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
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