Skip to content

Commit

Permalink
* Add Android utility classes from the official Java API of OpenCV (…
Browse files Browse the repository at this point in the history
…issue #549)
  • Loading branch information
saudet committed Apr 7, 2018
1 parent 5031598 commit bf18466
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

* Add Android utility classes from the official Java API of OpenCV ([issue #549](https://github.com/bytedeco/javacpp-presets/issues/549))
* Update build for FFmpeg on Raspbian Stretch ([pull #548](https://github.com/bytedeco/javacpp-presets/pull/548))
* Add presets for TensorRT
* Fix build for FFmpeg on `android-x86` and `android-x86_64` platforms ([issue bytedeco/javacv#945](https://github.com/bytedeco/javacv/issues/945))
* Upgrade presets for TensorFlow 1.7.0
Expand Down
5 changes: 5 additions & 0 deletions opencv/cppbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -190,5 +190,10 @@ case $PLATFORM in
esac

cp -r modules/java_bindings_generator/gen/java ..
cp -r modules/java_bindings_generator/gen/android/java ..
rm ../java/org/opencv/android/AsyncServiceHelper.java
rm ../java/org/opencv/android/CameraBridgeViewBase.java
rm ../java/org/opencv/android/JavaCameraView.java
rm ../java/org/opencv/android/OpenCVLoader.java

cd ../..
12 changes: 12 additions & 0 deletions opencv/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@
<groupId>org.bytedeco</groupId>
<artifactId>javacpp</artifactId>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.1.1.4</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit bf18466

Please sign in to comment.