Given a small bitmap that resembles a corner or three-way junction, how can the corner point be found? Some attempt has been made utilizing AForge Imaging to achieve this. The AForge "BlobsExplorer" sample program shows blob outlines (Convex Hull) surrounding the two major whitespace zones (image example 1).
http://www.aforgenet.com/framework/samples/image_processing.html https://github.com/cureos/aforge/tree/master/Samples/Imaging/BlobsExplorer
- 0: Source Image
- 1: Default load of Source image with BlobsExplorer
- 2: First Blob highlighted
- 3: Second Blob highlighted
- 4: Point to be found
How can the corner point be found based on the two blobs?
There are a bunch of other test images that appear to be properly interpreted by BlobsExplorer - I'm hoping the corner point can be found in a similar way.
Test images:
Thank you.