I want to identify the branching points of the lightning in this image:
https://i.stack.imgur.com/PXujf.jpg
What I did first was threshold the image such that I get the lighning part of the image and discard the backround. This is the result
https://i.stack.imgur.com/IYNTi.jpg
I used the threshold function in openCV and the resulting image is pretty much bad as the quality is lost, the branches are no longer visible.
Ok, basically I have 2 problems:
- How can i properly segment the image such that the lightning part of the image is properly captured.
- How can I then, identify the branching points? For every branch point i want to draw a red circle over it.
Thanking you in advance