Home | History | Annotate | Download | only in include

Lines Matching defs:ID

431     int     ID;  /* blob ID         */     
441 #define CV_BLOB_ID(pB) (((CvBlob*)(pB))->ID)
653 CV_INLINE CvDetectedBlob cvDetectedBlob( float x, float y, float w, float h, int ID = 0, float response = 0.0F )
656 b.x = x; b.y = y; b.w = w; b.h = h; b.ID = ID; b.response = response;
772 /* Add new blob to track it and assign to this blob personal ID */
773 /* pBlob - pointer to structure with blob parameters (ID is ignored)*/
799 int ID = 0;
801 //pBlob->ID;
805 pBlob->ID = ID;
821 int BI = GetBlobIndexByID(pB->ID);
841 /* Return pointer to blob by its unique ID: */
853 /* Return pointer to blob by its unique ID: */
856 /* Delete blob by its ID: */
862 /* Set new parameters for specified (by ID) blob: */
995 if(pB->ID==BlobID) return pB;
1144 virtual CvBlob* GetBlobByID(int ID) = 0;