-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpredictPose.py
74 lines (64 loc) · 2.58 KB
/
predictPose.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import consumer
import producer
import poseEstimation
import writeVideo
import writeToJSON
import cv2 as cv
import numpy as np
import time
from queue import Queue
if __name__ == "__main__":
keypointsProducer = producer.KeyPointsProducer()
boundingBoxConsumer = consumer.BoundingBoxConsumer("FandB")
frameConsumer = consumer.FrameConsumer("FandB")
poseEstimationModel = poseEstimation.PoseEstimation()
setupProducer = producer.SetupProducer()
setupProducer.send_setup_value(1)
setupProducer.producer.flush()
setupConsumer = consumer.SetupConsumer("pose")
try:
frames = []
boundingBoxQueue = []
while True:
retFrame, frame, offsetFrame = frameConsumer.receive_frame()
retSetup, setupValue = setupConsumer.receive_setup_value()
if setupValue == 5:
break
retBoundingBox, boundingBoxData, offsetBoundingBox = boundingBoxConsumer.receive_bounding_box()
if retFrame:
frames.append(frame);
if retBoundingBox:
boundingBoxQueue.append(boundingBoxData);
while(len(frames) > 0 and len(boundingBoxQueue) > 0):
boundingBoxData = boundingBoxQueue[0];
frame = frames[0]
while frame['offset'] < boundingBoxData['offset'] and len(frames) > 1:
frames.pop(0)
frame = frames[0]
if(frame['offset'] < boundingBoxData['offset']):
frames.pop(0)
break;
frames.pop(0)
boundingBoxQueue.pop(0)
offset = frame['offset']
frame = frame['data']
bounding_boxs = boundingBoxData["data"]
showing_frame = frame
allKeypoints = []
humanBoundingBox = []
for bounding_box in bounding_boxs:
keypoints = poseEstimationModel.predict(frame, bounding_box)
allKeypoints.append(keypoints.tolist())
humanBoundingBox.append(bounding_box)
### -------------------Send Keypoints---------------------###
keypoints = {
"offset": offset,
"data": allKeypoints
}
keypointsProducer.send_keypoints(keypoints)
except KeyboardInterrupt:
pass
finally:
boundingBoxConsumer.consumer.close()
frameConsumer.consumer.close()
keypointsProducer.producer.flush()