OpenPose v1.7.0

Signed-off-by: Gines Hidalgo <gineshidalgo99@gmail.com>
This commit is contained in:
Gines Hidalgo
2020-11-15 21:34:38 -05:00
parent 3533300575
commit 258182c28c
13 changed files with 21 additions and 14 deletions
@@ -80,7 +80,7 @@ try:
heatmap = heatmaps[counter, :, :].copy()
heatmap = cv2.applyColorMap(heatmap, cv2.COLORMAP_JET)
combined = cv2.addWeighted(outputImageF, 0.5, heatmap, 0.5, 0)
cv2.imshow("OpenPose 1.6.0 - Tutorial Python API", combined)
cv2.imshow("OpenPose 1.7.0 - Tutorial Python API", combined)
key = cv2.waitKey(-1)
if key == 27:
break