- Use sqrt to find the distance in pixels it traveled from one frame to the next.
- Multiply by your spatial calibration factor to convert from pixels to centimeters.
- Divide the distance in cm by the frame time.
Speed calculation of a gesture
3 次查看(过去 30 天)
显示 更早的评论
I have a gesture and want to calculate its speed. I have got its x and y axis points. How can speed profile of a gesture can be claculated using trajectory points??
0 个评论
回答(1 个)
Image Analyst
2021-1-1
Something like
distanceInPixels = sqrt(x1 - x2) ^ 2 + (y1 - y2) ^ 2);
distanceInCm = distanceInPixels * cmPerPixel;
speed = distanceInCm / frameTimeInSeconds;
To get the spatial calibration factor, see attached demo.
2 个评论
Image Analyst
2021-1-1
When you open the videoReader, it is the NumberOfFrame property. See the help for videoReader. It might be 1/30 of a second.
frameTimeInSeconds = 1/30; % For standard US (or 1/29.94).
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!