how to plot speed graph from centroid of the detected object in image processing ?
2 次查看(过去 30 天)
显示 更早的评论
Dear All,
i would like to plot the speed of the detected object moving only in the x direction in real time.(Not y direction) so i have tried with the following code but didn't get the appropriate solution. please find the attached code and graph i have sending with this file. the graph is not correct because i didnt understant how to implement the following formula
speed= distance/ time,
how can i modified the attached code to display the detected object and speed of moving object from centroid only in the x-direction as in the attached figure in real time.
hope for your appropriate solution.
Thank you.
0 个评论
采纳的回答
Image Analyst
2016-5-14
Add a third axes control. Then get the object alone by cropping it from the entire image using the object's bounding box and the imcrop() function. Then display the cropped image in the third axes.
4 个评论
Image Analyst
2016-5-15
Let's assume 1 object. For each frame you should calculate the centroid location. So now you have x and y vectors. You can also keep distance, speed, and acceleration arrays in your loop over frames.
thisDistance = sqrt((x(frame)-x(frame-1)^2+(y(frame)-y(frame-1))^2);
distance(frame) = distance(frame-1) + thisDistance;
frameTime = toc;
speed(frame) = thisDistance / frameTime; % Frame time is like 1/10 or /130 of a second or whatever. use tic and toc to get exact time.
accel(frame) = (speed(frame) - speed(frame-1)) / frameTime;
and so on.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!