You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
Using Catalano is very much similar to AForge.
BradleyLocalThreshold bt = new BradleyLocalThreshold();
bt.setWindowSize(32);
bt.setPixelBrightnessDifferenceLimit(0.02f);
bt.applyInPlace(fastBitmap);
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.
The text was updated successfully, but these errors were encountered: