body.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. import math
  2. import cv2
  3. import matplotlib.pyplot as plt
  4. import numpy as np
  5. import torch
  6. from scipy.ndimage.filters import gaussian_filter
  7. from service.ai.util import util
  8. from service.ai.util.model import bodypose_model
  9. class Body(object):
  10. def __init__(self, model_path):
  11. self.model = bodypose_model()
  12. if torch.cuda.is_available():
  13. self.model = self.model.cuda()
  14. model_dict = util.transfer(self.model, torch.load(model_path))
  15. self.model.load_state_dict(model_dict)
  16. self.model.eval()
  17. def __call__(self, oriImg):
  18. # scale_search = [0.5, 1.0, 1.5, 2.0]
  19. scale_search = [0.5]
  20. boxsize = 368
  21. stride = 8
  22. padValue = 128
  23. thre1 = 0.1
  24. thre2 = 0.05
  25. multiplier = [x * boxsize / oriImg.shape[0] for x in scale_search]
  26. heatmap_avg = np.zeros((oriImg.shape[0], oriImg.shape[1], 19))
  27. paf_avg = np.zeros((oriImg.shape[0], oriImg.shape[1], 38))
  28. for m in range(len(multiplier)):
  29. scale = multiplier[m]
  30. imageToTest = cv2.resize(oriImg, (0, 0), fx=scale, fy=scale, interpolation=cv2.INTER_CUBIC)
  31. imageToTest_padded, pad = util.padRightDownCorner(imageToTest, stride, padValue)
  32. im = np.transpose(np.float32(imageToTest_padded[:, :, :, np.newaxis]), (3, 2, 0, 1)) / 256 - 0.5
  33. im = np.ascontiguousarray(im)
  34. data = torch.from_numpy(im).float()
  35. if torch.cuda.is_available():
  36. data = data.cuda()
  37. # data = data.permute([2, 0, 1]).unsqueeze(0).float()
  38. with torch.no_grad():
  39. Mconv7_stage6_L1, Mconv7_stage6_L2 = self.model(data)
  40. Mconv7_stage6_L1 = Mconv7_stage6_L1.cpu().numpy()
  41. Mconv7_stage6_L2 = Mconv7_stage6_L2.cpu().numpy()
  42. # extract outputs, resize, and remove padding
  43. # heatmap = np.transpose(np.squeeze(net.blobs[output_blobs.keys()[1]].data), (1, 2, 0)) # output 1 is heatmaps
  44. heatmap = np.transpose(np.squeeze(Mconv7_stage6_L2), (1, 2, 0)) # output 1 is heatmaps
  45. heatmap = cv2.resize(heatmap, (0, 0), fx=stride, fy=stride, interpolation=cv2.INTER_CUBIC)
  46. heatmap = heatmap[:imageToTest_padded.shape[0] - pad[2], :imageToTest_padded.shape[1] - pad[3], :]
  47. heatmap = cv2.resize(heatmap, (oriImg.shape[1], oriImg.shape[0]), interpolation=cv2.INTER_CUBIC)
  48. # paf = np.transpose(np.squeeze(net.blobs[output_blobs.keys()[0]].data), (1, 2, 0)) # output 0 is PAFs
  49. paf = np.transpose(np.squeeze(Mconv7_stage6_L1), (1, 2, 0)) # output 0 is PAFs
  50. paf = cv2.resize(paf, (0, 0), fx=stride, fy=stride, interpolation=cv2.INTER_CUBIC)
  51. paf = paf[:imageToTest_padded.shape[0] - pad[2], :imageToTest_padded.shape[1] - pad[3], :]
  52. paf = cv2.resize(paf, (oriImg.shape[1], oriImg.shape[0]), interpolation=cv2.INTER_CUBIC)
  53. heatmap_avg += heatmap_avg + heatmap / len(multiplier)
  54. paf_avg += + paf / len(multiplier)
  55. all_peaks = []
  56. peak_counter = 0
  57. for part in range(18):
  58. map_ori = heatmap_avg[:, :, part]
  59. one_heatmap = gaussian_filter(map_ori, sigma=3)
  60. map_left = np.zeros(one_heatmap.shape)
  61. map_left[1:, :] = one_heatmap[:-1, :]
  62. map_right = np.zeros(one_heatmap.shape)
  63. map_right[:-1, :] = one_heatmap[1:, :]
  64. map_up = np.zeros(one_heatmap.shape)
  65. map_up[:, 1:] = one_heatmap[:, :-1]
  66. map_down = np.zeros(one_heatmap.shape)
  67. map_down[:, :-1] = one_heatmap[:, 1:]
  68. peaks_binary = np.logical_and.reduce(
  69. (one_heatmap >= map_left, one_heatmap >= map_right, one_heatmap >= map_up, one_heatmap >= map_down,
  70. one_heatmap > thre1))
  71. peaks = list(zip(np.nonzero(peaks_binary)[1], np.nonzero(peaks_binary)[0])) # note reverse
  72. peaks_with_score = [x + (map_ori[x[1], x[0]],) for x in peaks]
  73. peak_id = range(peak_counter, peak_counter + len(peaks))
  74. peaks_with_score_and_id = [peaks_with_score[i] + (peak_id[i],) for i in range(len(peak_id))]
  75. all_peaks.append(peaks_with_score_and_id)
  76. peak_counter += len(peaks)
  77. # find connection in the specified sequence, center 29 is in the position 15
  78. limbSeq = [[2, 3], [2, 6], [3, 4], [4, 5], [6, 7], [7, 8], [2, 9], [9, 10], \
  79. [10, 11], [2, 12], [12, 13], [13, 14], [2, 1], [1, 15], [15, 17], \
  80. [1, 16], [16, 18], [3, 17], [6, 18]]
  81. # the middle joints heatmap correpondence
  82. mapIdx = [[31, 32], [39, 40], [33, 34], [35, 36], [41, 42], [43, 44], [19, 20], [21, 22], \
  83. [23, 24], [25, 26], [27, 28], [29, 30], [47, 48], [49, 50], [53, 54], [51, 52], \
  84. [55, 56], [37, 38], [45, 46]]
  85. connection_all = []
  86. special_k = []
  87. mid_num = 10
  88. for k in range(len(mapIdx)):
  89. score_mid = paf_avg[:, :, [x - 19 for x in mapIdx[k]]]
  90. candA = all_peaks[limbSeq[k][0] - 1]
  91. candB = all_peaks[limbSeq[k][1] - 1]
  92. nA = len(candA)
  93. nB = len(candB)
  94. indexA, indexB = limbSeq[k]
  95. if (nA != 0 and nB != 0):
  96. connection_candidate = []
  97. for i in range(nA):
  98. for j in range(nB):
  99. vec = np.subtract(candB[j][:2], candA[i][:2])
  100. norm = math.sqrt(vec[0] * vec[0] + vec[1] * vec[1])
  101. norm = max(0.001, norm)
  102. vec = np.divide(vec, norm)
  103. startend = list(zip(np.linspace(candA[i][0], candB[j][0], num=mid_num), \
  104. np.linspace(candA[i][1], candB[j][1], num=mid_num)))
  105. vec_x = np.array([score_mid[int(round(startend[I][1])), int(round(startend[I][0])), 0] \
  106. for I in range(len(startend))])
  107. vec_y = np.array([score_mid[int(round(startend[I][1])), int(round(startend[I][0])), 1] \
  108. for I in range(len(startend))])
  109. score_midpts = np.multiply(vec_x, vec[0]) + np.multiply(vec_y, vec[1])
  110. score_with_dist_prior = sum(score_midpts) / len(score_midpts) + min(
  111. 0.5 * oriImg.shape[0] / norm - 1, 0)
  112. criterion1 = len(np.nonzero(score_midpts > thre2)[0]) > 0.8 * len(score_midpts)
  113. criterion2 = score_with_dist_prior > 0
  114. if criterion1 and criterion2:
  115. connection_candidate.append(
  116. [i, j, score_with_dist_prior, score_with_dist_prior + candA[i][2] + candB[j][2]])
  117. connection_candidate = sorted(connection_candidate, key=lambda x: x[2], reverse=True)
  118. connection = np.zeros((0, 5))
  119. for c in range(len(connection_candidate)):
  120. i, j, s = connection_candidate[c][0:3]
  121. if (i not in connection[:, 3] and j not in connection[:, 4]):
  122. connection = np.vstack([connection, [candA[i][3], candB[j][3], s, i, j]])
  123. if (len(connection) >= min(nA, nB)):
  124. break
  125. connection_all.append(connection)
  126. else:
  127. special_k.append(k)
  128. connection_all.append([])
  129. # last number in each row is the total parts number of that person
  130. # the second last number in each row is the score of the overall configuration
  131. subset = -1 * np.ones((0, 20))
  132. candidate = np.array([item for sublist in all_peaks for item in sublist])
  133. for k in range(len(mapIdx)):
  134. if k not in special_k:
  135. partAs = connection_all[k][:, 0]
  136. partBs = connection_all[k][:, 1]
  137. indexA, indexB = np.array(limbSeq[k]) - 1
  138. for i in range(len(connection_all[k])): # = 1:size(temp,1)
  139. found = 0
  140. subset_idx = [-1, -1]
  141. for j in range(len(subset)): # 1:size(subset,1):
  142. if subset[j][indexA] == partAs[i] or subset[j][indexB] == partBs[i]:
  143. subset_idx[found] = j
  144. found += 1
  145. if found == 1:
  146. j = subset_idx[0]
  147. if subset[j][indexB] != partBs[i]:
  148. subset[j][indexB] = partBs[i]
  149. subset[j][-1] += 1
  150. subset[j][-2] += candidate[partBs[i].astype(int), 2] + connection_all[k][i][2]
  151. elif found == 2: # if found 2 and disjoint, merge them
  152. j1, j2 = subset_idx
  153. membership = ((subset[j1] >= 0).astype(int) + (subset[j2] >= 0).astype(int))[:-2]
  154. if len(np.nonzero(membership == 2)[0]) == 0: # merge
  155. subset[j1][:-2] += (subset[j2][:-2] + 1)
  156. subset[j1][-2:] += subset[j2][-2:]
  157. subset[j1][-2] += connection_all[k][i][2]
  158. subset = np.delete(subset, j2, 0)
  159. else: # as like found == 1
  160. subset[j1][indexB] = partBs[i]
  161. subset[j1][-1] += 1
  162. subset[j1][-2] += candidate[partBs[i].astype(int), 2] + connection_all[k][i][2]
  163. # if find no partA in the subset, create a new subset
  164. elif not found and k < 17:
  165. row = -1 * np.ones(20)
  166. row[indexA] = partAs[i]
  167. row[indexB] = partBs[i]
  168. row[-1] = 2
  169. row[-2] = sum(candidate[connection_all[k][i, :2].astype(int), 2]) + connection_all[k][i][2]
  170. subset = np.vstack([subset, row])
  171. # delete some rows of subset which has few parts occur
  172. deleteIdx = []
  173. for i in range(len(subset)):
  174. if subset[i][-1] < 4 or subset[i][-2] / subset[i][-1] < 0.4:
  175. deleteIdx.append(i)
  176. subset = np.delete(subset, deleteIdx, axis=0)
  177. # subset: n*20 array, 0-17 is the index in candidate, 18 is the total score, 19 is the total parts
  178. # candidate: x, y, score, id
  179. return candidate, subset
  180. if __name__ == "__main__":
  181. body_estimation = Body('../model/body_pose_model.pth')
  182. test_image = '../images/ski.jpg'
  183. # test_image='.。/capture_image/capture_image3.png'
  184. oriImg = cv2.imread(test_image) # B,G,R order
  185. candidate, subset = body_estimation(oriImg)
  186. canvas = util.draw_bodypose(oriImg, candidate, subset)
  187. plt.imshow(canvas[:, :, [2, 1, 0]])
  188. plt.show()