Skip to content

Commit ac2dde6

Browse files
OpenPose v1.5.0
1 parent acc4fb2 commit ac2dde6

File tree

12 files changed

+19
-12
lines changed

12 files changed

+19
-12
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### VERSION INFO
22
set(OpenPose_VERSION_MAJOR 1)
3-
set(OpenPose_VERSION_MINOR 4)
3+
set(OpenPose_VERSION_MINOR 5)
44
set(OpenPose_VERSION_PATCH 0)
55
set(OpenPose_VERSION ${OpenPose_VERSION_MAJOR}.${OpenPose_VERSION_MINOR}.${OpenPose_VERSION_PATCH})
66

doc/release_notes.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ OpenPose Library - Release Notes
258258

259259

260260

261-
## Current version - future OpenPose 1.5.0
261+
## OpenPose 1.5.0 (May 16, 2019)
262262
1. Main improvements:
263263
1. Added initial single-person tracker for further speed up or visual smoothing (`--tracking` flag).
264264
2. Speed up of the CUDA functions of OpenPose:
@@ -365,5 +365,12 @@ OpenPose Library - Release Notes
365365

366366

367367

368+
## Current version - future OpenPose 1.5.1
369+
1. Main improvements:
370+
2. Functions or parameters renamed:
371+
3. Main bugs fixed:
372+
373+
374+
368375
## All OpenPose Versions
369376
Download and/or check any OpenPose version from [https://github.com/CMU-Perceptual-Computing-Lab/openpose/releases](https://github.com/CMU-Perceptual-Computing-Lab/openpose/releases).

examples/tutorial_api_python/01_body_from_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
# Display Image
6666
print("Body keypoints: \n" + str(datum.poseKeypoints))
67-
cv2.imshow("OpenPose 1.4.0 - Tutorial Python API", datum.cvOutputData)
67+
cv2.imshow("OpenPose 1.5.0 - Tutorial Python API", datum.cvOutputData)
6868
cv2.waitKey(0)
6969
except Exception as e:
7070
# print(e)

examples/tutorial_api_python/02_whole_body_from_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
print("Face keypoints: \n" + str(datum.faceKeypoints))
7070
print("Left hand keypoints: \n" + str(datum.handKeypoints[0]))
7171
print("Right hand keypoints: \n" + str(datum.handKeypoints[1]))
72-
cv2.imshow("OpenPose 1.4.0 - Tutorial Python API", datum.cvOutputData)
72+
cv2.imshow("OpenPose 1.5.0 - Tutorial Python API", datum.cvOutputData)
7373
cv2.waitKey(0)
7474
except Exception as e:
7575
# print(e)

examples/tutorial_api_python/04_keypoints_from_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
print("Body keypoints: \n" + str(datum.poseKeypoints))
7373

7474
if not args[0].no_display:
75-
cv2.imshow("OpenPose 1.4.0 - Tutorial Python API", datum.cvOutputData)
75+
cv2.imshow("OpenPose 1.5.0 - Tutorial Python API", datum.cvOutputData)
7676
key = cv2.waitKey(15)
7777
if key == 27: break
7878

examples/tutorial_api_python/05_keypoints_from_images_multi_gpu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
print("Body keypoints: \n" + str(datum.poseKeypoints))
100100

101101
if not args[0].no_display:
102-
cv2.imshow("OpenPose 1.4.0 - Tutorial Python API", datum.cvOutputData)
102+
cv2.imshow("OpenPose 1.5.0 - Tutorial Python API", datum.cvOutputData)
103103
key = cv2.waitKey(15)
104104
if key == 27: break
105105

examples/tutorial_api_python/06_face_from_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
# Process and display image
7777
opWrapper.emplaceAndPop([datum])
7878
print("Face keypoints: \n" + str(datum.faceKeypoints))
79-
cv2.imshow("OpenPose 1.4.0 - Tutorial Python API", datum.cvOutputData)
79+
cv2.imshow("OpenPose 1.5.0 - Tutorial Python API", datum.cvOutputData)
8080
cv2.waitKey(0)
8181
except Exception as e:
8282
# print(e)

examples/tutorial_api_python/07_hand_from_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
opWrapper.emplaceAndPop([datum])
9090
print("Left hand keypoints: \n" + str(datum.handKeypoints[0]))
9191
print("Right hand keypoints: \n" + str(datum.handKeypoints[1]))
92-
cv2.imshow("OpenPose 1.4.0 - Tutorial Python API", datum.cvOutputData)
92+
cv2.imshow("OpenPose 1.5.0 - Tutorial Python API", datum.cvOutputData)
9393
cv2.waitKey(0)
9494
except Exception as e:
9595
# print(e)

examples/tutorial_api_python/08_heatmaps_from_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
heatmap = heatmaps[counter, :, :].copy()
8181
heatmap = cv2.applyColorMap(heatmap, cv2.COLORMAP_JET)
8282
combined = cv2.addWeighted(outputImageF, 0.5, heatmap, 0.5, 0)
83-
cv2.imshow("OpenPose 1.4.0 - Tutorial Python API", combined)
83+
cv2.imshow("OpenPose 1.5.0 - Tutorial Python API", combined)
8484
key = cv2.waitKey(-1)
8585
if key == 27:
8686
break

examples/tutorial_api_python/09_keypoints_from_heatmaps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_sample_heatmaps():
8181

8282
# Display Image
8383
print("Body keypoints: \n" + str(datum.poseKeypoints))
84-
cv2.imshow("OpenPose 1.4.0 - Tutorial Python API", datum.cvOutputData)
84+
cv2.imshow("OpenPose 1.5.0 - Tutorial Python API", datum.cvOutputData)
8585
cv2.waitKey(0)
8686
except Exception as e:
8787
# print(e)

0 commit comments

Comments
 (0)