Update the changelog
[opencv] / cvaux / src / vs / blobtrackpostproclinear.cpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                        Intel License Agreement
11 //
12 // Copyright (C) 2000, Intel Corporation, all rights reserved.
13 // Third party copyrights are property of their respective owners.
14 //
15 // Redistribution and use in source and binary forms, with or without modification,
16 // are permitted provided that the following conditions are met:
17 //
18 //   * Redistribution's of source code must retain the above copyright notice,
19 //     this list of conditions and the following disclaimer.
20 //
21 //   * Redistribution's in binary form must reproduce the above copyright notice,
22 //     this list of conditions and the following disclaimer in the documentation
23 //     and/or other materials provided with the distribution.
24 //
25 //   * The name of Intel Corporation may not be used to endorse or promote products
26 //     derived from this software without specific prior written permission.
27 //
28 // This software is provided by the copyright holders and contributors "as is" and
29 // any express or implied warranties, including, but not limited to, the implied
30 // warranties of merchantability and fitness for a particular purpose are disclaimed.
31 // In no event shall the Intel Corporation or contributors be liable for any direct,
32 // indirect, incidental, special, exemplary, or consequential damages
33 // (including, but not limited to, procurement of substitute goods or services;
34 // loss of use, data, or profits; or business interruption) however caused
35 // and on any theory of liability, whether in contract, strict liability,
36 // or tort (including negligence or otherwise) arising in any way out of
37 // the use of this software, even if advised of the possibility of such damage.
38 //
39 //M*/
40
41 #include "_cvaux.h"
42
43 /*======================= TIME AVERAGING FILTER =========================*/
44 #define TIME_WND 5
45 class CvBlobTrackPostProcTimeAver:public CvBlobTrackPostProcOne
46 {
47
48 protected:
49     CvBlob      m_Blob;
50     CvBlob      m_pBlobs[TIME_WND];
51     float       m_Weights[TIME_WND];
52     int         m_Frame;
53
54 public:
55     CvBlobTrackPostProcTimeAver( int KernelType = 0)
56     {
57         int i;
58         m_Frame = 0;
59         for(i=0;i<TIME_WND;++i)
60         {
61             m_Weights[i] = 1;
62             if(KernelType == 1)
63             {
64                 m_Weights[i] = (float)exp((-2.3*i)/(TIME_WND-1)); /* last weight is 0.1 of first weight */
65             }
66         }
67     };
68
69    ~CvBlobTrackPostProcTimeAver(){};
70
71     CvBlob* Process(CvBlob* pBlob)
72     {
73         float   WSum = 0;
74         int     i;
75         int index = m_Frame % TIME_WND;
76         int size = MIN((m_Frame+1), TIME_WND);
77         m_pBlobs[index] = pBlob[0];
78         m_Blob.x = m_Blob.y = m_Blob.w = m_Blob.h = 0;
79         
80         for(i=0; i<size; ++i)
81         {
82             float   W = m_Weights[i];
83             int     index  = (m_Frame - i + TIME_WND) % TIME_WND;
84             m_Blob.x += W*m_pBlobs[index].x;
85             m_Blob.y += W*m_pBlobs[index].y;
86             m_Blob.w += W*m_pBlobs[index].w;
87             m_Blob.h += W*m_pBlobs[index].h;
88             WSum += W;
89         }
90         assert(WSum>0);
91
92         m_Blob.x /= WSum;
93         m_Blob.y /= WSum;
94         m_Blob.w /= WSum;
95         m_Blob.h /= WSum;
96
97         m_Frame++;
98         return &m_Blob;
99     };
100
101     void Release()
102     {
103         delete this;
104     }
105 };  /* class CvBlobTrackPostProcTimeAver */
106
107 CvBlobTrackPostProcOne* cvCreateModuleBlobTrackPostProcTimeAverRectOne()
108 {
109     return (CvBlobTrackPostProcOne*) new CvBlobTrackPostProcTimeAver(0);
110 }
111
112 CvBlobTrackPostProcOne* cvCreateModuleBlobTrackPostProcTimeAverExpOne()
113 {
114     return (CvBlobTrackPostProcOne*) new CvBlobTrackPostProcTimeAver(1);
115 }
116
117 CvBlobTrackPostProc* cvCreateModuleBlobTrackPostProcTimeAverRect()
118 {
119     return cvCreateBlobTrackPostProcList(cvCreateModuleBlobTrackPostProcTimeAverRectOne);
120 }
121
122 CvBlobTrackPostProc* cvCreateModuleBlobTrackPostProcTimeAverExp()
123 {
124     return cvCreateBlobTrackPostProcList(cvCreateModuleBlobTrackPostProcTimeAverExpOne);
125 }
126 /*======================= KALMAN FILTER =========================*/