I am trying to figure out (for a project) if Python (or others) could recognize different objects in movement. For example, with a phone camera could possible to count how many chickens pass in front of the app/cam?.
Thank you guys
This is a broad question regarding machine learning and object detection. As places to start from, I would recommend general reading about machine learning
, so as to become a little accustomed with the field, and I would also recommend you two check two of the most popular deep learning frameworks, namely TensorFlow and PyTorch. For (mostly) non-deep learning based approaches, the first library I would suggest is scikit-learn.
Then, you can dwell into an object detection algorithm like YOLO; here's a good article about the algorithm using TensorFlow with keras. Keep in mind though that I strongly advise you not to go straight to the algorithm if you 're completely new to machine learning, but to get a grasp of the bigger picture first.