Reputation: 23
I have a task to count small objects falling freely from conveyor exit using camera. Camera input will be like as shown in this video below, and I need to count them.
https://drive.google.com/file/d/1nKzDVLBZmpdQDIsiNU1BwiwKKPdm-dHo/view
I was thinking to go for object detection using Yolo and then apply DeepSort for tracking and counting.
I have two simple questions regarding this.
Is there any solution to above problems. And what should be the approach and methods to count such fast moving small objects?
Any help of any kind will be very appreciated :)
Upvotes: 0
Views: 1110
Reputation: 3476
When you pause the video on any of the frames you all the moving objects are smeared out on the image. Your camera is your main issue here. My suggestion is that you first get a camera with a higher shutter speed so that the moving objects appear sharper. Then, collect a dataset, annotate and train Yolo.
Feel free to checkout out my tracking repo: https://github.com/mikel-brostrom/Yolov5_StrongSORT_OSNet
Upvotes: 0