Iām evaluating Roboflow and had a few questions. I have video of hockey pucks being shot against a wall using a static camera position and I ultimately want to:
Identify when a puck makes contact with the wall (Iām assuming Iāll have to manually annotate when the contacts occur in the training set)
Identify the puck coordinates over time
Does Roboflow support this? I ask as it seems a blend of object detection and classification as opposed to one or the other for the Project Type.
As a (former) hocker player, I love where this app is headed.
This question here is less āis this the right problem for roboflowā and more āhow do I structure the computer vision problem such that I can use the right methods to solve it.ā It sounds tractable with object detection and a bit of post-processing logic, depending on what your goals are.
Is your objective to count when a puck hits the wall? Identify that specific moment? Measure the speed of the puck?
To your specific questions:
Identify when a puck makes contact with the wall (Iām assuming Iāll have to manually annotate when the contacts occur in the training set)
This will likely depend on the camera position. For example, is your camera in a fixed position āhorizontalā to the flight of the puck? If so, you could identify when the puck (labeled as object detection) is reaching a fixed point (the wall) in your images/video.
If you donāt have a āhorizontalā view, you could infer that the puck (labeled as object detection) has hit the wall once its course of flight slows down/changes quickly. This would entail writing code to compare the position of the puck bounding box after each frame to see if thereās notable movements (changes in direction/speed)
Identify the puck coordinates over time
This I would certainly do with object detection. In fact, if your camera is in a fixed position relative to the moving puck, you could do a bit of math to approximate the puckās speed. If you know the camera is X feet from the puck and the puckās position has moved Y to Z in ABC seconds of video, you can interpret its speed.
Ultimately, I would structure your problem as object detection of the puckās location and use those coordinates to conduct other logic like position, speed, hitting the wall.
Awesome, thank you for the detailed reply! The āhow do I structure the computer vision problem such that I can use the right methods to solve it,ā is a very useful framing for me to adopt so thank you. Conceptually I know much of what I want and need, I just donāt know the best way to get there. Iāll dig in a bit more and post additional questions if they arise. Thanks again!