Skip to content

Commit 8c86d14

Browse files
Version 1.0.2
1 parent 616ba21 commit 8c86d14

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

Makefile

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

doc/openpose_3d_reconstruction_demo.md

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

44
This is a beta version that makes body + face + hand keypoint 3-D reconstruction and rendering for 1 person. We will not keep updating it nor solving questions/issues about it at the moment. It requires the user to be familiar with computer vision, in particular with camera calibration, i.e. extraction of intrinsic and extrinsic parameters.
55

6-
The Windows steps were tested and worked in the OpenPose 1.0.1 version from the last GitHub commit on July 18th, 2017 in the [official repository](https://github.com/CMU-Perceptual-Computing-Lab/openpose). 3D OpenPose should work with any newer version to that one. However, in case it does not, open a GitHub issue and meanwhile use the mentioned version of July 18th.
6+
The Windows steps were tested and worked in the OpenPose 1.0.2 version from the last GitHub commit on September 1st, 2017 in the [official repository](https://github.com/CMU-Perceptual-Computing-Lab/openpose). 3D OpenPose should work with any newer version to that one. However, in case it does not, open a GitHub issue and meanwhile use the mentioned version of July 18th.
77

88

99

doc/release_notes.md

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

8484

8585

86-
## Current version (future OpenPose 1.0.2)
86+
## OpenPose 1.0.2
8787
1. Main improvements:
8888
1. Added OpenCV 3.3 compatibility.
8989
2. Caffe turned into DLL library.
@@ -99,3 +99,9 @@ OpenPose Library - Release Notes
9999
2. Main bugs fixed:
100100
1. Pycaffe can now be imported from Python.
101101
2. Fixed `Tutorial/Wrapper` VS linking errors.
102+
103+
104+
105+
## Current version (future OpenPose 1.0.3)
106+
1. Main improvements:
107+
2. Main bugs fixed:

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.0.1"};
10+
const std::string OPEN_POSE_TEXT{"OpenPose 1.0.2"};
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.0.1</Version>
67+
<Version>1.0.2</Version>
6868
</Link>
6969
</ItemDefinitionGroup>
7070
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">

0 commit comments

Comments
 (0)