deleted extra semicolons
This commit is contained in:
@@ -205,7 +205,7 @@ double CvVSModule::GetParam(const char* name)
|
||||
if(p->pInt) return p->pInt[0];
|
||||
}
|
||||
return 0;
|
||||
};
|
||||
}
|
||||
|
||||
const char* CvVSModule::GetParamStr(const char* name)
|
||||
{
|
||||
|
@@ -209,7 +209,7 @@ public:
|
||||
CvBlobDetectorSimple();
|
||||
~CvBlobDetectorSimple();
|
||||
int DetectNewBlob(IplImage* pImg, IplImage* pFGMask, CvBlobSeq* pNewBlobList, CvBlobSeq* pOldBlobList);
|
||||
void Release(){delete this;};
|
||||
void Release(){delete this;}
|
||||
|
||||
protected:
|
||||
IplImage* m_pMaskBlobNew;
|
||||
@@ -219,7 +219,7 @@ protected:
|
||||
};
|
||||
|
||||
/* Blob detector creator (sole interface function for this file) */
|
||||
CvBlobDetector* cvCreateBlobDetectorSimple(){return new CvBlobDetectorSimple;};
|
||||
CvBlobDetector* cvCreateBlobDetectorSimple(){return new CvBlobDetectorSimple;}
|
||||
|
||||
/* Constructor of BlobDetector: */
|
||||
CvBlobDetectorSimple::CvBlobDetectorSimple()
|
||||
|
@@ -52,7 +52,7 @@ enum
|
||||
{
|
||||
MOUTH = 0,
|
||||
LEYE = 1,
|
||||
REYE = 2,
|
||||
REYE = 2
|
||||
};
|
||||
|
||||
#define MAX_LAYERS 64
|
||||
|
Reference in New Issue
Block a user