Skip to content

Commit 03bee14

Browse files
committed
Merge pull request opencv#18282 from alalek:update_version_3.4.12-pre
2 parents c31164b + 50ff40d commit 03bee14

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

doc/tutorials/dnn/dnn_android/dnn_android.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Tutorial was written for the following versions of corresponding software:
1515

1616
- Download and install Android Studio from https://developer.android.com/studio.
1717

18-
- Get the latest pre-built OpenCV for Android release from https://github.com/opencv/opencv/releases and unpack it (for example, `opencv-3.4.11-android-sdk.zip`).
18+
- Get the latest pre-built OpenCV for Android release from https://github.com/opencv/opencv/releases and unpack it (for example, `opencv-3.X.Y-android-sdk.zip`).
1919

2020
- Download MobileNet object detection model from https://github.com/chuanqi305/MobileNet-SSD. We need a configuration file `MobileNetSSD_deploy.prototxt` and weights `MobileNetSSD_deploy.caffemodel`.
2121

doc/tutorials/introduction/cross_referencing/tutorial_cross_referencing.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ Open your Doxyfile using your favorite text editor and search for the key
3939
`TAGFILES`. Change it as follows:
4040

4141
@code
42-
TAGFILES = ./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/3.4.11
42+
TAGFILES = ./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/3.4.12
4343
@endcode
4444

4545
If you had other definitions already, you can append the line using a `\`:
4646

4747
@code
4848
TAGFILES = ./docs/doxygen-tags/libstdc++.tag=https://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen \
49-
./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/3.4.11
49+
./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/3.4.12
5050
@endcode
5151

5252
Doxygen can now use the information from the tag file to link to the OpenCV

modules/core/include/opencv2/core/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
#define CV_VERSION_MAJOR 3
99
#define CV_VERSION_MINOR 4
10-
#define CV_VERSION_REVISION 11
11-
#define CV_VERSION_STATUS "-dev"
10+
#define CV_VERSION_REVISION 12
11+
#define CV_VERSION_STATUS "-pre"
1212

1313
#define CVAUX_STR_EXP(__A) #__A
1414
#define CVAUX_STR(__A) CVAUX_STR_EXP(__A)

modules/dnn/include/opencv2/dnn/dnn.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
#include "opencv2/core/async.hpp"
4848

4949
#if !defined CV_DOXYGEN && !defined CV_STATIC_ANALYSIS && !defined CV_DNN_DONT_ADD_EXPERIMENTAL_NS
50-
#define CV__DNN_EXPERIMENTAL_NS_BEGIN namespace experimental_dnn_34_v18 {
50+
#define CV__DNN_EXPERIMENTAL_NS_BEGIN namespace experimental_dnn_34_v19 {
5151
#define CV__DNN_EXPERIMENTAL_NS_END }
52-
namespace cv { namespace dnn { namespace experimental_dnn_34_v18 { } using namespace experimental_dnn_34_v18; }}
52+
namespace cv { namespace dnn { namespace experimental_dnn_34_v19 { } using namespace experimental_dnn_34_v19; }}
5353
#else
5454
#define CV__DNN_EXPERIMENTAL_NS_BEGIN
5555
#define CV__DNN_EXPERIMENTAL_NS_END

modules/python/package/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def main():
99
os.chdir(SCRIPT_DIR)
1010

1111
package_name = 'opencv'
12-
package_version = os.environ.get('OPENCV_VERSION', '3.4.11') # TODO
12+
package_version = os.environ.get('OPENCV_VERSION', '3.4.12') # TODO
1313

1414
long_description = 'Open Source Computer Vision Library Python bindings' # TODO
1515

platforms/android/build_sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def build_engine(self, abi, engdest):
269269
# Add extra data
270270
apkxmldest = check_dir(os.path.join(apkdest, "res", "xml"), create=True)
271271
apklibdest = check_dir(os.path.join(apkdest, "libs", abi.name), create=True)
272-
for ver, d in self.extra_packs + [("3.4.11", os.path.join(self.libdest, "lib"))]:
272+
for ver, d in self.extra_packs + [("3.4.12", os.path.join(self.libdest, "lib"))]:
273273
r = ET.Element("library", attrib={"version": ver})
274274
log.info("Adding libraries from %s", d)
275275

platforms/android/service/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ manually using adb tool:
1212

1313
adb install <path-to-OpenCV-sdk>/apk/OpenCV_<version>_Manager_<app_version>_<platform>.apk
1414

15-
Example: OpenCV_3.4.11-dev_Manager_3.49_armeabi-v7a.apk
15+
Example: OpenCV_3.4.12-dev_Manager_3.49_armeabi-v7a.apk
1616

1717
Use the list of platforms below to determine proper OpenCV Manager package for your device:
1818

platforms/maven/opencv-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencv</groupId>
66
<artifactId>opencv-parent</artifactId>
7-
<version>3.4.11</version>
7+
<version>3.4.12</version>
88
</parent>
99
<groupId>org.opencv</groupId>
1010
<artifactId>opencv-it</artifactId>

platforms/maven/opencv/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencv</groupId>
66
<artifactId>opencv-parent</artifactId>
7-
<version>3.4.11</version>
7+
<version>3.4.12</version>
88
</parent>
99
<groupId>org.opencv</groupId>
1010
<artifactId>opencv</artifactId>

platforms/maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.opencv</groupId>
55
<artifactId>opencv-parent</artifactId>
6-
<version>3.4.11</version>
6+
<version>3.4.12</version>
77
<packaging>pom</packaging>
88
<name>OpenCV Parent POM</name>
99
<licenses>

0 commit comments

Comments
 (0)