Skip to content

Commit 123cb64

Browse files
OpenPose v1.4.0
1 parent e798bf1 commit 123cb64

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CMakeLists.txt

+1-1
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 3)
3+
set(OpenPose_VERSION_MINOR 4)
44
set(OpenPose_VERSION_PATCH 0)
55
set(OpenPose_VERSION ${OpenPose_VERSION_MAJOR}.${OpenPose_VERSION_MINOR}.${OpenPose_VERSION_PATCH})
66

doc/release_notes.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ OpenPose Library - Release Notes
211211

212212

213213

214-
## Current version - future OpenPose 2.0.0
214+
## OpenPose 1.4.0 (Sep 01, 2018)
215215
1. Main improvements:
216216
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.
217217
2. New calibration module: Intrinsic and extrinsic camera calibration toolbox based on OpenCV.
@@ -259,5 +259,12 @@ OpenPose Library - Release Notes
259259

260260

261261

262+
## Current version - future OpenPose 1.4.1
263+
1. Main improvements:
264+
2. Functions or parameters renamed:
265+
3. Main bugs fixed:
266+
267+
268+
262269
## All OpenPose Versions
263270
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).

include/openpose/core/macros.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// OpenPose name and version
1010
const std::string OPEN_POSE_NAME_STRING = "OpenPose";
11-
const std::string OPEN_POSE_VERSION_STRING = "1.3.0";
11+
const std::string OPEN_POSE_VERSION_STRING = "1.4.0";
1212
const std::string OPEN_POSE_NAME_AND_VERSION = OPEN_POSE_NAME_STRING + " " + OPEN_POSE_VERSION_STRING;
1313
// #define COMMERCIAL_LICENSE
1414

ubuntu_deprecated/Makefile.example

+1-1
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 := 3
36+
DYNAMIC_VERSION_MINOR := 4
3737
DYNAMIC_VERSION_REVISION := 0
3838
DYNAMIC_NAME_SHORT := lib$(LIBRARY_NAME).so
3939
#DYNAMIC_SONAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR)

0 commit comments

Comments
 (0)