Update the trunk to the OpenCV's CVS (2008-07-14)
[opencv] / cvaux / src / vs / blobtrackpostproclist.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 /*======================= FILTER LIST SHELL =====================*/
44 typedef struct DefBlobFilter
45 {
46     CvBlob                  blob;
47     CvBlobTrackPostProcOne* pFilter;
48     int                     m_LastFrame;
49 } DefBlobFilter;
50
51 class CvBlobTrackPostProcList : public CvBlobTrackPostProc
52 {
53 protected:
54     CvBlobTrackPostProcOne* (*m_CreatePostProc)();
55     CvBlobSeq               m_BlobFilterList;
56     int                     m_Frame;
57
58 public:
59     CvBlobTrackPostProcList(CvBlobTrackPostProcOne* (*create)()):m_BlobFilterList(sizeof(DefBlobFilter))
60     {
61         m_Frame = 0;
62         m_CreatePostProc = create;
63         CvBlobTrackPostProcOne* pM = create();
64         TransferParamsFromChild(pM,NULL);
65         pM->Release();
66     }
67
68    ~CvBlobTrackPostProcList()
69     {
70         int i;
71         for(i=m_BlobFilterList.GetBlobNum();i>0;--i)
72         {
73             DefBlobFilter* pF = (DefBlobFilter*)m_BlobFilterList.GetBlob(i-1);
74             pF->pFilter->Release();
75         }
76     };
77
78     virtual void    AddBlob(CvBlob* pBlob)
79     {
80         DefBlobFilter* pF = (DefBlobFilter*)m_BlobFilterList.GetBlobByID(CV_BLOB_ID(pBlob));
81         if(pF == NULL)
82         {   /* Create new filter: */
83             DefBlobFilter F;
84             F.blob = pBlob[0];
85             F.m_LastFrame = m_Frame;
86             F.pFilter = m_CreatePostProc();
87             TransferParamsToChild(F.pFilter,NULL);
88             m_BlobFilterList.AddBlob((CvBlob*)&F);
89             pF = (DefBlobFilter*)m_BlobFilterList.GetBlobByID(CV_BLOB_ID(pBlob));
90         }
91
92         assert(pF);
93         pF->blob = pBlob[0];
94         pF->m_LastFrame = m_Frame;
95     };
96
97     virtual void    Process()
98     {
99         int i;
100         for(i=m_BlobFilterList.GetBlobNum(); i>0; --i)
101         {
102             DefBlobFilter* pF = (DefBlobFilter*)m_BlobFilterList.GetBlob(i-1);
103
104             if(pF->m_LastFrame == m_Frame)
105             {   /* Process: */
106                 int ID = CV_BLOB_ID(pF);
107                 pF->blob = *(pF->pFilter->Process(&(pF->blob)));
108                 CV_BLOB_ID(pF) = ID;
109             }
110             else
111             {   /* Delete blob filter: */
112                 pF->pFilter->Release();
113                 m_BlobFilterList.DelBlob(i-1);
114             }
115         }   /* Next blob. */
116         m_Frame++;
117     };
118
119     int     GetBlobNum(){return m_BlobFilterList.GetBlobNum();};
120     CvBlob* GetBlob(int index){return m_BlobFilterList.GetBlob(index);};
121     void    Release(){delete this;};
122
123     /* Additional functionality: */
124     CvBlob* GetBlobByID(int BlobID){return m_BlobFilterList.GetBlobByID(BlobID);}
125
126 };  /* CvBlobTrackPostProcList */
127
128 CvBlobTrackPostProc* cvCreateBlobTrackPostProcList(CvBlobTrackPostProcOne* (*create)())
129 {
130     return (CvBlobTrackPostProc*) new CvBlobTrackPostProcList(create);
131 }
132 /*======================= FILTER LIST SHELL =====================*/