Hello I have a work on this image:
My objective is to count all the sperm in this image .for this I'm thinking to detect just the lines so it make my work easy. because I am beginner, in this step I am completely lost there are any algorithms can help me to detect lines?? ( I have seen that there are hough transformation and scan line algorithm) I don't which algorithm can help me and if there are others
Here's a piece of code that might help you getting started. By looking at the image it seems very difficult to label sperms by looking at straight lines and hence using Hough transform won't help a lot. In the example below I focused on filtering the image and counting the number of blobs. The code is commented and should be easy to understand.