diff --git a/ChangeLog b/ChangeLog index 69b64fc..c94f160 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,7 +6,8 @@ Version 0.10.4 (2011/01/26) * cvlabel.cpp: fixed bug in the function cvLabel by which it calculates area off by one. - * cvblob.h: removed references to cvCentralMoments. + * cvblob.h: removed references to cvCentralMoments. Fixed bug with + "cvGreaterBlob". Version 0.10.3 (2010/11/12) diff --git a/cvBlob/cvblob.h b/cvBlob/cvblob.h index 047fed1..473f8d5 100644 --- a/cvBlob/cvblob.h +++ b/cvBlob/cvblob.h @@ -58,7 +58,7 @@ extern "C" { //////////////////////////////////////////////////////////////////////////////////////////////////////////// // Contours - + // Chain code: // 7 0 1 // 6 2 @@ -339,7 +339,7 @@ extern "C" { inline CvLabel cvGreaterBlob(const CvBlobs &blobs) { - return cvLargestBlob(blobs); + return cvLargestBlob(blobs); } /// \fn void cvFilterByArea(CvBlobs &blobs, unsigned int minArea, unsigned int maxArea)