@@ -47,15 +47,15 @@ def __call__(self, oriImg):
47
47
48
48
# extract outputs, resize, and remove padding
49
49
# heatmap = np.transpose(np.squeeze(net.blobs[output_blobs.keys()[1]].data), (1, 2, 0)) # output 1 is heatmaps
50
- heatmap = np .transpose (np .squeeze (Mconv7_stage6_L2 ), (1 , 2 , 0 )). astype ( np . uint8 ) # output 1 is heatmaps
50
+ heatmap = np .transpose (np .squeeze (Mconv7_stage6_L2 ), (1 , 2 , 0 )) # output 1 is heatmaps
51
51
heatmap = cv2 .resize (heatmap , (0 , 0 ), fx = stride , fy = stride , interpolation = cv2 .INTER_CUBIC )
52
- heatmap = heatmap [:imageToTest_padded .shape [0 ] - pad [2 ], :imageToTest_padded .shape [1 ] - pad [3 ], :]. astype ( np . uint8 )
52
+ heatmap = heatmap [:imageToTest_padded .shape [0 ] - pad [2 ], :imageToTest_padded .shape [1 ] - pad [3 ], :]
53
53
heatmap = cv2 .resize (heatmap , (oriImg .shape [1 ], oriImg .shape [0 ]), interpolation = cv2 .INTER_CUBIC )
54
54
55
55
# paf = np.transpose(np.squeeze(net.blobs[output_blobs.keys()[0]].data), (1, 2, 0)) # output 0 is PAFs
56
- paf = np .transpose (np .squeeze (Mconv7_stage6_L1 ), (1 , 2 , 0 )). astype ( np . uint8 ) # output 0 is PAFs
56
+ paf = np .transpose (np .squeeze (Mconv7_stage6_L1 ), (1 , 2 , 0 )) # output 0 is PAFs
57
57
paf = cv2 .resize (paf , (0 , 0 ), fx = stride , fy = stride , interpolation = cv2 .INTER_CUBIC )
58
- paf = paf [:imageToTest_padded .shape [0 ] - pad [2 ], :imageToTest_padded .shape [1 ] - pad [3 ], :]. astype ( np . uint8 )
58
+ paf = paf [:imageToTest_padded .shape [0 ] - pad [2 ], :imageToTest_padded .shape [1 ] - pad [3 ], :]
59
59
paf = cv2 .resize (paf , (oriImg .shape [1 ], oriImg .shape [0 ]), interpolation = cv2 .INTER_CUBIC )
60
60
61
61
heatmap_avg += heatmap_avg + heatmap / len (multiplier )
0 commit comments