-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmark.py
More file actions
executable file
·122 lines (99 loc) · 4.1 KB
/
Copy pathbenchmark.py
File metadata and controls
executable file
·122 lines (99 loc) · 4.1 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# -*- coding: utf-8 -*-
import tensorflow as tf
import numpy as np
import json
import argparse
import cv2
import os
import math
import time
from scipy.ndimage.filters import gaussian_filter
def cal_coord(pred_heatmaps, images_anno):
coords = {}
for img_id in pred_heatmaps.keys():
heat_h, heat_w, n_kpoints = pred_heatmaps[img_id].shape
scale_h, scale_w = heat_h / images_anno[img_id]['height'], heat_w / images_anno[img_id]['width']
coord = []
for p_ind in range(n_kpoints):
heat = pred_heatmaps[img_id][:, :, p_ind]
heat = gaussian_filter(heat, sigma=5)
ind = np.unravel_index(np.argmax(heat), heat.shape)
coord_x = int((ind[1] + 1) / scale_w)
coord_y = int((ind[0] + 1) / scale_h)
coord.append((coord_x, coord_y))
coords[img_id] = coord
return coords
def infer(frozen_pb_path, output_node_name, img_path, images_anno):
with tf.gfile.GFile(frozen_pb_path, "rb") as f:
restored_graph_def = tf.GraphDef()
restored_graph_def.ParseFromString(f.read())
tf.import_graph_def(
restored_graph_def,
input_map=None,
return_elements=None,
name=""
)
graph = tf.get_default_graph()
input_image = graph.get_tensor_by_name("image:0")
output_heat = graph.get_tensor_by_name("%s:0" % output_node_name)
res = {}
use_times = []
with tf.Session() as sess:
for img_id in images_anno.keys():
ori_img = cv2.imread(os.path.join(img_path, images_anno[img_id]['file_name']))
shape = input_image.get_shape().as_list()
inp_img = cv2.resize(ori_img, (shape[1], shape[2]))
st = time.time()
heat = sess.run(output_heat, feed_dict={input_image: [inp_img]})
infer_time = 1000 * (time.time() - st)
print("img_id = %d, cost_time = %.2f ms" % (img_id, infer_time))
use_times.append(infer_time)
res[img_id] = np.squeeze(heat)
print("Average inference time = %.2f ms" % np.mean(use_times))
return res
if __name__ == '__main__':
parser = argparse.ArgumentParser(description="PCKh benchmark")
parser.add_argument("--frozen_pb_path", type=str, default="")
parser.add_argument("--anno_json_path", type=str, default="")
parser.add_argument("--img_path", type=str, default="")
parser.add_argument("--output_node_name", type=str, default="")
parser.add_argument("--gpus", type=str, default="1")
args = parser.parse_args()
os.environ['CUDA_VISIBLE_DEVICES'] = args.gpus
anno = json.load(open(args.anno_json_path))
print("Total test example=%d" % len(anno['images']))
images_anno = {}
keypoint_annos = {}
transform = list(zip(
[1, 2, 4, 6, 8, 3, 5, 7, 10, 12, 14, 9, 11, 13],
[1, 2, 4, 6, 8, 3, 5, 7, 10, 12, 14, 9, 11, 13]
))
for img_info, anno_info in zip(anno['images'], anno['annotations']):
images_anno[img_info['id']] = img_info
prev_xs = anno_info['keypoints'][0::3]
prev_ys = anno_info['keypoints'][1::3]
new_kp = []
for idx, idy in transform:
new_kp.append(
(prev_xs[idx-1], prev_ys[idy-1])
)
keypoint_annos[anno_info['image_id']] = new_kp
pred_heatmap = infer(args.frozen_pb_path, args.output_node_name, args.img_path, images_anno)
pred_coords = cal_coord(pred_heatmap, images_anno)
scores = []
for img_id in keypoint_annos.keys():
groundtruth_anno = keypoint_annos[img_id]
head_gt = groundtruth_anno[0]
neck_gt = groundtruth_anno[1]
threshold = math.sqrt((head_gt[0] - neck_gt[0]) ** 2 + (head_gt[1] - neck_gt[1]) ** 2)
curr_score = []
for index, coord in enumerate(pred_coords[img_id]):
pred_x, pred_y = coord
gt_x, gt_y = groundtruth_anno[index]
d = math.sqrt((pred_x-gt_x)**2 + (pred_y-gt_y)**2)
if d > threshold:
curr_score.append(0)
else:
curr_score.append(1)
scores.append(np.mean(curr_score))
print("PCKh=%.2f" % (np.mean(scores) * 100))