From 123cb64750c81e9c396fdd2d502a92a319d848a0 Mon Sep 17 00:00:00 2001 From: gineshidalgo99 Date: Sat, 1 Sep 2018 22:41:56 -0400 Subject: [PATCH] OpenPose v1.4.0 --- CMakeLists.txt | 2 +- doc/release_notes.md | 9 ++++++++- include/openpose/core/macros.hpp | 2 +- ubuntu_deprecated/Makefile.example | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f30917e..77bfa9d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ ### VERSION INFO set(OpenPose_VERSION_MAJOR 1) -set(OpenPose_VERSION_MINOR 3) +set(OpenPose_VERSION_MINOR 4) set(OpenPose_VERSION_PATCH 0) set(OpenPose_VERSION ${OpenPose_VERSION_MAJOR}.${OpenPose_VERSION_MINOR}.${OpenPose_VERSION_PATCH}) diff --git a/doc/release_notes.md b/doc/release_notes.md index 62e7e1b4..e5179104 100644 --- a/doc/release_notes.md +++ b/doc/release_notes.md @@ -211,7 +211,7 @@ OpenPose Library - Release Notes -## Current version - future OpenPose 2.0.0 +## OpenPose 1.4.0 (Sep 01, 2018) 1. Main improvements: 1. Model BODY_25 released, that includes the 17 COCO keypoints + neck + midhip + 6 foot keypoints. It is also about 3% more accurate and 30% faster than the original `COCO` model. 2. New calibration module: Intrinsic and extrinsic camera calibration toolbox based on OpenCV. @@ -259,5 +259,12 @@ OpenPose Library - Release Notes +## Current version - future OpenPose 1.4.1 +1. Main improvements: +2. Functions or parameters renamed: +3. Main bugs fixed: + + + ## All OpenPose Versions 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). diff --git a/include/openpose/core/macros.hpp b/include/openpose/core/macros.hpp index 1b86c738..7b8f849d 100644 --- a/include/openpose/core/macros.hpp +++ b/include/openpose/core/macros.hpp @@ -8,7 +8,7 @@ // OpenPose name and version const std::string OPEN_POSE_NAME_STRING = "OpenPose"; -const std::string OPEN_POSE_VERSION_STRING = "1.3.0"; +const std::string OPEN_POSE_VERSION_STRING = "1.4.0"; const std::string OPEN_POSE_NAME_AND_VERSION = OPEN_POSE_NAME_STRING + " " + OPEN_POSE_VERSION_STRING; // #define COMMERCIAL_LICENSE diff --git a/ubuntu_deprecated/Makefile.example b/ubuntu_deprecated/Makefile.example index 21ff82ca..90e738c3 100644 --- a/ubuntu_deprecated/Makefile.example +++ b/ubuntu_deprecated/Makefile.example @@ -33,7 +33,7 @@ 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 := 3 +DYNAMIC_VERSION_MINOR := 4 DYNAMIC_VERSION_REVISION := 0 DYNAMIC_NAME_SHORT := lib$(LIBRARY_NAME).so #DYNAMIC_SONAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR) -- GitLab