Quantcast
Viewing all articles
Browse latest Browse all 3693

New Post: Connected Components area threshold

You should use the following method:
using (MagickImage compared = new MagickImage(filepath))
{
  compared.Settings.SetDefine("connected-components:area-threshold", "200");
 compared.ConnectedComponents(4);
}
But I think I should create something like this:
using (MagickImage compared = new MagickImage(filepath))
{
  ConnectedComponentsSettings settings = new ConnectedComponentsSettings()
  {
    AreaThreshold = 200,
    Connectivity = 4
  };
  compared.ConnectedComponents(settings);
}
This will make it a lot easier for you. I don't know why you get a different result on the command line. Do you have an example image that I could use to reproduce your issue? Feel free to contact me through CodePlex if you cannot share it publicly.

Viewing all articles
Browse latest Browse all 3693

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>