I have 3 black dots in a scanned image that its size is 600x400 px, and I like to know the best and simple way in C# to get their coordinates, like this:
dot1 X=400px Y=100px
dot2 X=100px Y=200px
dot3 X=300px Y=300px
I have 3 black dots in a scanned image that its size is 600x400 px, and I like to know the best and simple way in C# to get their coordinates, like this:
dot1 X=400px Y=100px
dot2 X=100px Y=200px
dot3 X=300px Y=300px

I will take a long shot and assume that you only have two colors exactly as the image shows: Black dots and White background.
You may work around that and detect the occurrence of the black color, something like this as a start for your algorithm: