mohamadDev / aforge

Automatically exported from code.google.com/p/aforge
Other
0 stars 0 forks source link

BlobsFiltering #131

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Using this code...
// create filter
BlobsFiltering filter = new BlobsFiltering( );
// configure filter
filter.CoupledSizeFiltering = true;
filter.MinWidth  = 70;
filter.MinHeight = 70;
// apply the filter
filter.ApplyInPlace( image );

... I expect image to have all the blobs except those smaller than 70x70.
When I save "image" I got all the blobs.

Is there something I am missing?

Regards
Dan

Original issue reported on code.google.com by daniele....@gmail.com on 2 Mar 2010 at 3:25

GoogleCodeExporter commented 9 years ago
Yes, you are missing reading docs:
http://www.aforgenet.com/framework/docs/html/5fd9bd3a-a7cd-a7e8-0947-bf8a15ceee4
e.htm

"The property specifies minimum object's height acceptable by blob counting 
routine 
and has power only when FilterBlobs property is set to true."

P.S. If you have question, use forum, please. But issue tracking system is for 
bugs 
or enhancement requests.

Original comment by andrew.k...@gmail.com on 2 Mar 2010 at 3:30