Skip to content
This repository has been archived by the owner on Mar 22, 2020. It is now read-only.

Commit

Permalink
OpenCV version++
Browse files Browse the repository at this point in the history
OpenCV 3.3.0
  • Loading branch information
alalek committed Aug 3, 2017
1 parent 953160d commit 4af3ca4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/core/include/opencv2/core/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#define CV_VERSION_MAJOR 3
#define CV_VERSION_MINOR 3
#define CV_VERSION_REVISION 0
#define CV_VERSION_STATUS "-rc"
#define CV_VERSION_STATUS ""

#define CVAUX_STR_EXP(__A) #__A
#define CVAUX_STR(__A) CVAUX_STR_EXP(__A)
Expand Down
2 changes: 1 addition & 1 deletion platforms/android/build_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def build_engine(self, abi, engdest):
# Add extra data
apkxmldest = check_dir(os.path.join(apkdest, "res", "xml"), create=True)
apklibdest = check_dir(os.path.join(apkdest, "libs", abi.name), create=True)
for ver, d in self.extra_packs + [("3.2.0", os.path.join(self.libdest, "lib"))]:
for ver, d in self.extra_packs + [("3.3.0", os.path.join(self.libdest, "lib"))]:
r = ET.Element("library", attrib={"version": ver})
log.info("Adding libraries from %s", d)

Expand Down
4 changes: 2 additions & 2 deletions platforms/android/service/engine/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.opencv.engine"
android:versionCode="320@ANDROID_PLATFORM_ID@"
android:versionName="3.20">
android:versionCode="330@ANDROID_PLATFORM_ID@"
android:versionName="3.30">

<uses-sdk android:minSdkVersion="@ANDROID_NATIVE_API_LEVEL@" android:targetSdkVersion="22"/>
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public String getLibPathByVersion(String version)

@Override
public int getEngineVersion() throws RemoteException {
int version = 3200;
int version = 3300;
try {
version = getPackageManager().getPackageInfo(getPackageName(), 0).versionCode;
} catch (NameNotFoundException e) {
Expand Down
2 changes: 1 addition & 1 deletion platforms/android/service/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ manually using adb tool:

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

Example: OpenCV_3.2.0-dev_Manager_3.20_armeabi-v7a.apk
Example: OpenCV_3.3.0-dev_Manager_3.30_armeabi-v7a.apk

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

Expand Down

0 comments on commit 4af3ca4

Please sign in to comment.