Skip to content

Commit

Permalink
Updated ChangeLog.
Browse files Browse the repository at this point in the history
  • Loading branch information
cristobalcl committed May 25, 2012
1 parent 7791e68 commit c4e294c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions cvBlob/cvblob.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ extern "C" {

////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Contours

// Chain code:
// 7 0 1
// 6 2
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit c4e294c

Please sign in to comment.