Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
ihhub committed Mar 17, 2024
1 parent bcccb7f commit 173a749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/blob_detection/example_blob_detection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ int main( int argc, char * argv[] )
if ( !detection().empty() ) {
// okay, our image contains some blobs
// extract a biggest one
const Blob_Detection::BlobInfo & blob = detection.getBestBlob( Blob_Detection::BlobDetection::BY_SIZE );
const Blob_Detection::BlobInfo & blob = detection.getBestBlob( Blob_Detection::BlobDetection::BlobCriterion::BY_SIZE );

// clear image and draw contour of found blob
image.fill( 0 );
Expand Down

0 comments on commit 173a749

Please sign in to comment.