You should use the following method:
But I think I should create something like this:
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.
using (MagickImage compared = new MagickImage(filepath)) { compared.Settings.SetDefine("connected-components:area-threshold", "200"); compared.ConnectedComponents(4); }
using (MagickImage compared = new MagickImage(filepath)) { ConnectedComponentsSettings settings = new ConnectedComponentsSettings() { AreaThreshold = 200, Connectivity = 4 }; compared.ConnectedComponents(settings); }