forked from kif/imageAlignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintegral.cpp
68 lines (49 loc) · 1.23 KB
/
integral.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* \file integrale.h
* \brief {File concerning calculus of integral image, convolution, haarwavelet, etc}
*
*/
#include "integral.h"
/// Compute integrale image
/** Take in argument the image, symetrize it and then calculate.
*/
imageIntegral* computeIntegralImage(image* img,bool verbose)
{
int starter=3*(3+pow(2.0f,octave)*(interval+2));
image* stamp=new image(img->w()+2*starter,img->h()+2*starter);
int i2,j2;
for(int j=-starter;j<img->h()+starter;j++)
for(int i=-starter;i<img->w()+starter;i++)
{
i2=i;
j2=j;
if(i<0)
i2=-i;
else if(i>img->w()-1)
i2=2*(img->w()-1)-i;
if(j<0)
j2=-j;
else if(j>img->h()-1)
j2=2*(img->h()-1)-j;
(*stamp)(i+starter,j+starter)=(*img)(i2,j2);
}
//Now we use the stamp to compute its integral image.
imageIntegral* imgInt=new imageIntegral(stamp);
(*imgInt)(0,0)=(*stamp)(0,0);
for(int i=1;i<stamp->w();i++)
(*imgInt)(i,0)=(*imgInt)(i-1,0)+(*stamp)(i,0);
for(int j=1;j<stamp->h();j++)
{
float h=0.f;
for(int i=0;i<stamp->w();i++)
{
h+=(*stamp)(i,j);
(*imgInt)(i,j)=(*imgInt)(i,j-1)+h;
}
}
delete stamp;
if(verbose)
imgInt->printImage((char*)"imInt.png");
imgInt->center(starter,img);
return imgInt;
}