You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function should take in a list of body part positions at all frames of the video and return the starting and ending frame at which the exercise is found.
The input list has as many elements as there are frames.
Elements of the initial list are body part position lists.
Body part position lists have 17 elements, one for each body part that is being detected.
Each element of the body part position list is [x coordinate, y coordinate, confidence].
Here is the example input:
Create a python function with the following declaration:
The function should take in a list of body part positions at all frames of the video and return the starting and ending frame at which the exercise is found.
The input list has as many elements as there are frames.
Elements of the initial list are body part position lists.
Body part position lists have 17 elements, one for each body part that is being detected.
Each element of the body part position list is
[x coordinate, y coordinate, confidence]
.Here is the example input:
The output is a tuple of starting and ending frame.
Here is an example output:
The text was updated successfully, but these errors were encountered: