Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
wang wenquan
opencv
Commits
1f5fd865
Commit
1f5fd865
authored
9 years ago
by
Alexander Smorkalov
Browse files
Options
Download
Plain Diff
Merge pull request #5092 from etalanin:update-branch-to-2-4-12
parents
6f47c26a
9a3dccab
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
modules/core/include/opencv2/core/version.hpp
+1
-1
modules/core/include/opencv2/core/version.hpp
modules/java/generator/src/java/android+OpenCVLoader.java
+5
-0
modules/java/generator/src/java/android+OpenCVLoader.java
platforms/android/service/engine/AndroidManifest.xml
+3
-3
platforms/android/service/engine/AndroidManifest.xml
platforms/android/service/engine/jni/BinderComponent/OpenCVEngine.cpp
+1
-1
...droid/service/engine/jni/BinderComponent/OpenCVEngine.cpp
with
10 additions
and
5 deletions
+10
-5
modules/core/include/opencv2/core/version.hpp
+
1
−
1
View file @
1f5fd865
...
...
@@ -49,7 +49,7 @@
#define CV_VERSION_EPOCH 2
#define CV_VERSION_MAJOR 4
#define CV_VERSION_MINOR 1
1
#define CV_VERSION_MINOR 1
2
#define CV_VERSION_REVISION 0
#define CVAUX_STR_EXP(__A) #__A
...
...
This diff is collapsed.
Click to expand it.
modules/java/generator/src/java/android+OpenCVLoader.java
+
5
−
0
View file @
1f5fd865
...
...
@@ -57,6 +57,11 @@ public class OpenCVLoader
*/
public
static
final
String
OPENCV_VERSION_2_4_11
=
"2.4.11"
;
/**
* OpenCV Library version 2.4.12.
*/
public
static
final
String
OPENCV_VERSION_2_4_12
=
"2.4.12"
;
/**
* Loads and initializes OpenCV library from current application package. Roughly, it's an analog of system.loadLibrary("opencv_java").
* @return Returns true is initialization of OpenCV was successful.
...
...
This diff is collapsed.
Click to expand it.
platforms/android/service/engine/AndroidManifest.xml
+
3
−
3
View file @
1f5fd865
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"org.opencv.engine"
android:versionCode=
"21
9
@ANDROID_PLATFORM_VERSION_CODE@"
android:versionName=
"2.2
0
"
>
android:versionCode=
"2
2
1@ANDROID_PLATFORM_VERSION_CODE@"
android:versionName=
"2.2
1
"
>
<uses-sdk
android:minSdkVersion=
"@ANDROID_NATIVE_API_LEVEL@"
/>
<uses-feature
android:name=
"android.hardware.touchscreen"
android:required=
"false"
/>
...
...
@@ -27,4 +27,4 @@
</intent-filter>
</activity>
</application>
</manifest>
\ No newline at end of file
</manifest>
This diff is collapsed.
Click to expand it.
platforms/android/service/engine/jni/BinderComponent/OpenCVEngine.cpp
+
1
−
1
View file @
1f5fd865
...
...
@@ -15,7 +15,7 @@ using namespace android;
const
int
OpenCVEngine
::
Platform
=
DetectKnownPlatforms
();
const
int
OpenCVEngine
::
CpuID
=
GetCpuID
();
const
int
OpenCVEngine
::
KnownVersions
[]
=
{
2040000
,
2040100
,
2040200
,
2040300
,
2040301
,
2040302
,
2040400
,
2040500
,
2040600
,
2040700
,
2040701
,
2040800
,
2040900
,
2041000
,
2041100
};
const
int
OpenCVEngine
::
KnownVersions
[]
=
{
2040000
,
2040100
,
2040200
,
2040300
,
2040301
,
2040302
,
2040400
,
2040500
,
2040600
,
2040700
,
2040701
,
2040800
,
2040900
,
2041000
,
2041100
,
2041200
};
bool
OpenCVEngine
::
ValidateVersion
(
int
version
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets