Update to 2.0.0 tree from current Fremantle build
[opencv] / src / cvaux / vs / blobtrackanalysis.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 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2000, Intel Corporation, all rights reserved.
14 // Third party copyrights are property of their respective owners.
15 //
16 // Redistribution and use in source and binary forms, with or without modification,
17 // are permitted provided that the following conditions are met:
18 //
19 //   * Redistribution's of source code must retain the above copyright notice,
20 //     this list of conditions and the following disclaimer.
21 //
22 //   * Redistribution's in binary form must reproduce the above copyright notice,
23 //     this list of conditions and the following disclaimer in the documentation
24 //     and/or other materials provided with the distribution.
25 //
26 //   * The name of Intel Corporation may not be used to endorse or promote products
27 //     derived from this software without specific prior written permission.
28 //
29 // This software is provided by the copyright holders and contributors "as is" and
30 // any express or implied warranties, including, but not limited to, the implied
31 // warranties of merchantability and fitness for a particular purpose are disclaimed.
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
33 // indirect, incidental, special, exemplary, or consequential damages
34 // (including, but not limited to, procurement of substitute goods or services;
35 // loss of use, data, or profits; or business interruption) however caused
36 // and on any theory of liability, whether in contract, strict liability,
37 // or tort (including negligence or otherwise) arising in any way out of
38 // the use of this software, even if advised of the possibility of such damage.
39 //
40 //M*/
41
42 #include "_cvaux.h"
43
44 /*======================= FILTER LIST SHELL =====================*/
45 typedef struct DefTrackAnalyser
46 {
47     CvBlob                  blob;
48     CvBlobTrackAnalysisOne* pFilter;
49     int                     m_LastFrame;
50     int                     state;
51 } DefTrackAnalyser;
52
53 class CvBlobTrackAnalysisList : public CvBlobTrackAnalysis
54 {
55 protected:
56     CvBlobTrackAnalysisOne* (*m_CreateAnalysis)();
57     CvBlobSeq               m_TrackAnalyserList;
58     int                     m_Frame;
59 public:
60     CvBlobTrackAnalysisList(CvBlobTrackAnalysisOne* (*create)()):m_TrackAnalyserList(sizeof(DefTrackAnalyser))
61     {
62         m_Frame = 0;
63         m_CreateAnalysis = create;
64         SetModuleName("List");
65     }
66     ~CvBlobTrackAnalysisList()
67     {
68         int i;
69         for(i=m_TrackAnalyserList.GetBlobNum(); i>0; --i)
70         {
71             DefTrackAnalyser* pF = (DefTrackAnalyser*)m_TrackAnalyserList.GetBlob(i-1);
72             pF->pFilter->Release();
73         }
74     };
75     virtual void    AddBlob(CvBlob* pBlob)
76     {
77         DefTrackAnalyser* pF = (DefTrackAnalyser*)m_TrackAnalyserList.GetBlobByID(CV_BLOB_ID(pBlob));
78         if(pF == NULL)
79         {   /* Create new filter: */
80             DefTrackAnalyser F;
81             F.state = 0;
82             F.blob = pBlob[0];
83             F.m_LastFrame = m_Frame;
84             F.pFilter = m_CreateAnalysis();
85             m_TrackAnalyserList.AddBlob((CvBlob*)&F);
86             pF = (DefTrackAnalyser*)m_TrackAnalyserList.GetBlobByID(CV_BLOB_ID(pBlob));
87         }
88
89         assert(pF);
90         pF->blob = pBlob[0];
91         pF->m_LastFrame = m_Frame;
92     };
93     virtual void    Process(IplImage* pImg, IplImage* pFG)
94     {
95         int i;
96         for(i=m_TrackAnalyserList.GetBlobNum(); i>0; --i)
97         {
98             DefTrackAnalyser* pF = (DefTrackAnalyser*)m_TrackAnalyserList.GetBlob(i-1);
99             if(pF->m_LastFrame == m_Frame)
100             {   /* Process: */
101                 int ID = CV_BLOB_ID(pF);
102                 pF->state = pF->pFilter->Process(&(pF->blob), pImg, pFG);
103                 CV_BLOB_ID(pF) = ID;
104             }
105             else
106             {   /* Delete blob filter: */
107                 pF->pFilter->Release();
108                 m_TrackAnalyserList.DelBlob(i-1);
109             }
110         } /* Next blob. */
111         m_Frame++;
112     };
113     float GetState(int BlobID)
114     {
115         DefTrackAnalyser* pF = (DefTrackAnalyser*)m_TrackAnalyserList.GetBlobByID(BlobID);
116         return pF?pF->state:0.f;
117     };
118     void    Release(){delete this;};
119
120 }; /* CvBlobTrackAnalysisList */
121
122 CvBlobTrackAnalysis* cvCreateBlobTrackAnalysisList(CvBlobTrackAnalysisOne* (*create)())
123 {
124     return (CvBlobTrackAnalysis*) new CvBlobTrackAnalysisList(create);
125 }
126
127 /* ======================== Analyser modules ============================= */
128