I have created a program that displays 96x512 numpy arrays as images. Within these images, there are targets (the data is an image of a sphere in a pool... this will eventually be used for fish tracking). I have reached the point where user input via mouse click will give the target coordinates.
What I'm not even remotely sure how to do is use scipy (I'm guessing through filtering, etc... I'm still new to python) to autonomously differentiate targets (anything under X value, for example). And then, if that target moves...say, less than 5 pixels, for target tracking.
Does anyone know if there are any good modules or guides for how to do this?
The end goal is to be able to tell how many targets there are, track their movement, and obtain the size... but that is down the road.
Edit: To clarify (sorry), I have been using pyqtgraph in conjunction with PyQt to display the images.