From 4ff9bb36064cdbf337b5428463ef5e15091f9dbf Mon Sep 17 00:00:00 2001 From: gineshidalgo99 Date: Tue, 19 Sep 2017 23:37:27 -0400 Subject: [PATCH] OpenPose 1.1.0 --- Makefile | 4 ++-- doc/release_notes.md | 7 ++++++- src/openpose/gui/gui.cpp | 2 +- windows/OpenPose/OpenPose.vcxproj | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index baf8ab64..3fe32105 100644 --- a/Makefile +++ b/Makefile @@ -33,8 +33,8 @@ LIBRARY_NAME := $(PROJECT) LIB_BUILD_DIR := $(BUILD_DIR)/lib STATIC_NAME := $(LIB_BUILD_DIR)/lib$(LIBRARY_NAME).a DYNAMIC_VERSION_MAJOR := 1 -DYNAMIC_VERSION_MINOR := 0 -DYNAMIC_VERSION_REVISION := 2 +DYNAMIC_VERSION_MINOR := 1 +DYNAMIC_VERSION_REVISION := 0 DYNAMIC_NAME_SHORT := lib$(LIBRARY_NAME).so #DYNAMIC_SONAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR) DYNAMIC_VERSIONED_NAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR).$(DYNAMIC_VERSION_MINOR).$(DYNAMIC_VERSION_REVISION) diff --git a/doc/release_notes.md b/doc/release_notes.md index 57f4ded9..459cc7d5 100644 --- a/doc/release_notes.md +++ b/doc/release_notes.md @@ -102,7 +102,7 @@ OpenPose Library - Release Notes -## Current version (future OpenPose 1.1.0) +## OpenPose 1.1.0 1. Main improvements: 1. Added CMake installer for Ubuntu. 2. Added how to use keypoint data in `examples/tutorial_wrapper/`. @@ -110,3 +110,8 @@ OpenPose Library - Release Notes 4. Slightly improved accuracy by considering ears-shoulder connection (e.g. 0.4 mAP for 1 scale in validation set). 2. Main bugs fixed: 1. Windows version crashing with std::map copy. + + + +## Current version (future OpenPose 1.1.1) +1. Main improvements: diff --git a/src/openpose/gui/gui.cpp b/src/openpose/gui/gui.cpp index 73bb1fd6..e53a8d4f 100644 --- a/src/openpose/gui/gui.cpp +++ b/src/openpose/gui/gui.cpp @@ -7,7 +7,7 @@ namespace op { - const std::string OPEN_POSE_TEXT{"OpenPose 1.0.2"}; + const std::string OPEN_POSE_TEXT{"OpenPose 1.1.0"}; inline void showGuiHelp() { diff --git a/windows/OpenPose/OpenPose.vcxproj b/windows/OpenPose/OpenPose.vcxproj index fba0d116..e5cbbd1d 100644 --- a/windows/OpenPose/OpenPose.vcxproj +++ b/windows/OpenPose/OpenPose.vcxproj @@ -64,7 +64,7 @@ $(CUDA_PATH_V8_0)\lib\x64\;$(PYTHON_LIB);$(CudaToolkitLibDir);%(AdditionalLibraryDirectories);%(AdditionalLibraryDirectories); - 1.0.2 + 1.1.0 -- GitLab