Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Where can I find examples/sample code or documentation on the framework? #65

Open
jackz314 opened this issue Oct 5, 2020 · 1 comment

Comments

@jackz314
Copy link

jackz314 commented Oct 5, 2020

I'm trying to use the framework to do some grid detection. So far, I found the BradleyLocalThreshold class, but I'm not sure how I should use it exactly. Also, there are some other things that I want to do like contour detection and Gaussian blurring, is there any general documentation or sample code on image processing that I can look at?

From my limited research, it looks like there used to be samples and documentation in the code.google.com project, but nothing is there anymore and I can't find anything in this repo.

@ForThoseAboutToCode
Copy link

Hi Jackz,

Maybe you can take a look at http://www.aforgenet.com/framework/docs/html/0ad5b988-5613-d62a-22a9-cf41e39c139f.htm
Key is to specify the window size and difference limit factor.

Using Catalano is very much similar to AForge.
BradleyLocalThreshold bt = new BradleyLocalThreshold();
bt.setWindowSize(32);
bt.setPixelBrightnessDifferenceLimit(0.02f);
bt.applyInPlace(fastBitmap);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants