Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
cristobalcl committed May 25, 2012
1 parent 8b299df commit 7791e68
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cvBlob/cvblob.h
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,10 @@ extern "C" {
/// \see cvLabel
CvLabel cvLargestBlob(const CvBlobs &blobs);

cvLabel ((*cvGreaterBlob)(const CvBlobs &blobs)) = cvLargestBlob;
inline CvLabel cvGreaterBlob(const CvBlobs &blobs)
{
return cvLargestBlob(blobs);
}

/// \fn void cvFilterByArea(CvBlobs &blobs, unsigned int minArea, unsigned int maxArea)
/// \brief Filter blobs by area.
Expand Down

0 comments on commit 7791e68

Please sign in to comment.