Skip to content

Commit 3e957ba

Browse files
OpenPose v1.2.0
1 parent 4147ea0 commit 3e957ba

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ LIBRARY_NAME := $(PROJECT)
3333
LIB_BUILD_DIR := $(BUILD_DIR)/lib
3434
STATIC_NAME := $(LIB_BUILD_DIR)/lib$(LIBRARY_NAME).a
3535
DYNAMIC_VERSION_MAJOR := 1
36-
DYNAMIC_VERSION_MINOR := 1
36+
DYNAMIC_VERSION_MINOR := 2
3737
DYNAMIC_VERSION_REVISION := 0
3838
DYNAMIC_NAME_SHORT := lib$(LIBRARY_NAME).so
3939
#DYNAMIC_SONAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR)

doc/release_notes.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ OpenPose Library - Release Notes
33

44

55

6-
## OpenPose 1.0.0rc1
6+
## OpenPose 1.0.0rc1 (Apr 24, 2017)
77
1. Initial version, main functionality:
88
1. Body keypoint detection and rendering in Ubuntu 14 and 16.
99
2. It can read an image directory, video or webcam.
1010
3. It can display the results or storing them on disk.
1111

1212

1313

14-
## OpenPose 1.0.0rc2
14+
## OpenPose 1.0.0rc2 (May 10, 2017)
1515
1. Main improvements:
1616
1. Rendering max resolution from 720p to >32k images.
1717
2. Highly improved documentation.
@@ -22,7 +22,7 @@ OpenPose Library - Release Notes
2222

2323

2424

25-
## OpenPose 1.0.0rc3
25+
## OpenPose 1.0.0rc3 (Jun 8, 2017)
2626
1. Main improvements:
2727
1. Added face keypoint detection.
2828
2. Added Windows 10 compatibility.
@@ -44,7 +44,7 @@ OpenPose Library - Release Notes
4444

4545

4646

47-
## OpenPose 1.0.0
47+
## OpenPose 1.0.0 (Jul 8, 2017)
4848
1. Main improvements:
4949
1. Added hand keypoint detection.
5050
2. Windows branch merged to master branch.
@@ -74,7 +74,7 @@ OpenPose Library - Release Notes
7474

7575

7676

77-
## OpenPose 1.0.1
77+
## OpenPose 1.0.1 (Jul 11, 2017)
7878
1. Main improvements:
7979
1. Windows library turned into DLL dynamic library (i.e. portable).
8080
2. Improved documentation.
@@ -83,7 +83,7 @@ OpenPose Library - Release Notes
8383

8484

8585

86-
## OpenPose 1.0.2
86+
## OpenPose 1.0.2 (Sep 3, 2017)
8787
1. Main improvements:
8888
1. Added OpenCV 3.3 compatibility.
8989
2. Caffe turned into DLL library.
@@ -102,7 +102,7 @@ OpenPose Library - Release Notes
102102

103103

104104

105-
## OpenPose 1.1.0
105+
## OpenPose 1.1.0 (Sep 19, 2017)
106106
1. Main improvements:
107107
1. Added CMake installer for Ubuntu.
108108
2. Added how to use keypoint data in `examples/tutorial_wrapper/`.
@@ -113,7 +113,7 @@ OpenPose Library - Release Notes
113113

114114

115115

116-
## Current version (future OpenPose 1.2.0)
116+
## OpenPose 1.2.0 (Nov 3, 2017)
117117
1. Main improvements:
118118
1. Speed increase when processing images with different aspect ratios. E.g. ~20% increase over 3.7k COCO validation images on 1 scale.
119119
2. Huge speed increase and memory reduction when processing multi-scale. E.g. over 3.7k COCO validation images on 4 scales: ~40% (~770 to ~450 sec) speed increase, ~25% memory reduction (from ~8.9 to ~6.7 GB / GPU).
@@ -148,3 +148,7 @@ OpenPose Library - Release Notes
148148
1. Scaling resize issue fixed: ~1-pixel offset due to not considering 0-based indexes.
149149
2. Ubuntu installer script now works even if Python pip was not installed previously.
150150
3. Flags to set first and last frame as well as jumping frames backward and forward now works on image directory reader.
151+
152+
153+
154+
## Current version (future OpenPose 1.2.1)

src/openpose/gui/gui.cpp

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

88
namespace op
99
{
10-
const std::string OPEN_POSE_TEXT{"OpenPose 1.1.0"};
10+
const std::string OPEN_POSE_TEXT{"OpenPose 1.2.0"};
1111

1212
inline void showGuiHelp()
1313
{

windows/OpenPose/OpenPose.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
</CudaCompile>
6565
<Link>
6666
<AdditionalLibraryDirectories>$(CUDA_PATH_V8_0)\lib\x64\;$(PYTHON_LIB);$(CudaToolkitLibDir);%(AdditionalLibraryDirectories);%(AdditionalLibraryDirectories);</AdditionalLibraryDirectories>
67-
<Version>1.1.0</Version>
67+
<Version>1.2.0</Version>
6868
</Link>
6969
</ItemDefinitionGroup>
7070
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">

0 commit comments

Comments
 (0)