Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

The missing Java distribution of native C++ libraries

License

NotificationsYou must be signed in to change notification settings

bytedeco/javacpp-presets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitterMaven CentralSonatype Nexus (Snapshots)
Build status for all platforms (Android, iOS, Linux, Mac OS X, Windows):opencvffmpegflycapturespinnakerlibdc1394libfreenectlibfreenect2librealsenselibrealsense2videoinputartoolkitpluschilitagsflandmarkarrowhdf5hyperscanlz4mklmkl-dnndnnlopenblasarpack-ngcminpackfftwgslcpythonnumpyscipygymllvmlibffilibpostallibrawleptonicatesseractcaffeopenposecudanvcodecopenclmxnetpytorchsentencepiecetensorflowtensorflow-litetensorrttritonserveraledepthaionnxngraphonnxruntimetvmbulletliquidfunqtskiacpu_featuresmodsecuritysystems
Commercial support and paid services for custom presets:xscode

Introduction

The JavaCPP Presets modules contain Java configuration and interface classes for widely used C/C++ libraries. The configuration files in theorg.bytedeco.<moduleName>.presets packages are used by theParser to create from C/C++ header files the Java interface files targeting theorg.bytedeco.<moduleName> packages, which in turn are used by theGenerator and the native C++ compiler to produce the required JNI libraries. Moreover, helper classes make their functionality easier to use on the Java platform, including Android.

For orientation purposes, the documentation of this repository can be thought of as being split into 2 levels:

  1. The directory where this parent README.md document is located belongs to the upper level, thejavacpp-presets module itself, and
  2. The subdirectories in it are the actual child modules, with their README.md files, presets, and packages, as the lower level.

This parent README.md file contains general information applicable to all modules to solve issues concerning downloads, common requirements, installation procedures, and build instructions. The respective README.md files in each subdirectory contain extra information, links, and notes concerning API documentation, specific requirements, dependencies forpom.xml files, and sample usage code, for the presets and packages of each module. Please be aware that not all of the presets have the same level of maturity, and the style and layout may also differ from one to another since they are based on the APIs of third-party libraries.

Please refer to the wiki page for more information about how tocreate new presets. Since additional documentation is currently lacking, please also feel free to ask questions onthe mailing list orthe discussion forum.

Downloads

JAR files containing binaries for all child modules and builds for all supported platforms (Android, iOS, Linux, Mac OS X, and Windows) can be obtained from theMaven Central Repository. Archives containing these JAR files are also available asreleases.

To install manually the JAR files, follow the instructions in theManual Installation section below.

We can also have everything downloaded and installed automatically with:

  • Maven (inside thepom.xml file)
  <dependency>    <groupId>org.bytedeco</groupId>    <artifactId>${moduleName}-platform</artifactId>    <version>${moduleVersion}-1.5.12</version>  </dependency>
  • Gradle (inside thebuild.gradle.kts orbuild.gradle file)
  dependencies {    implementation("org.bytedeco:$moduleName-platform:$moduleVersion-1.5.12")  }
  • Leiningen (inside theproject.clj file)
:dependencies [    [~(symbol (str"org.bytedeco/" moduleName"-platform")) ~(str moduleVersion"-1.5.12")]  ]
  • sbt (inside thebuild.sbt file)
  libraryDependencies+="org.bytedeco"% moduleName+"-platform"% moduleVersion+"-1.5.12"

where themoduleName andmoduleVersion variables correspond to the desired module. This downloads binaries for all platforms, but to get binaries for only one platform we can set thejavacpp.platform system property (via the-D command line option) to something likeandroid-arm,linux-x86_64,macosx-x86_64,windows-x86_64, etc. We can also specify more than one platform, see the examples atReducing the Number of Dependencies. Another option available to Gradle users isGradle JavaCPP, and similarly for Scala users there isSBT-JavaCPP.

Required Software

To use the JavaCPP Presets, you will need to download and install the following software:

Further, in the case of Android, the JavaCPP Presets also rely on:

Manual Installation

Simply put all the desired JAR files (opencv*.jar,ffmpeg*.jar, etc.), in addition tojavacpp.jar, somewhere in your class path. The JAR files available as pre-built artifacts are meant to be used withJavaCPP. The binaries for Linux are built with Ubuntu, so they should work on most distributions currently in use. Here are some more specific instructions for common cases:

NetBeans (Java SE 7 or newer):

  1. In the Projects window, right-click the Libraries node of your project, and select "Add JAR/Folder...".
  2. Locate the JAR files, select them, and click OK.

Eclipse (Java SE 7 or newer):

  1. Navigate to Project > Properties > Java Build Path > Libraries and click "Add External JARs...".
  2. Locate the JAR files, select them, and click OK.

Visual Studio Code (Java SE 7 or newer):

  1. Navigate to Java Projects > Referenced Libraries, and click+.
  2. Locate the JAR files, select them, and click OK.

IntelliJ IDEA (Android 7.0 or newer):

  1. Follow the instructions on this page:http://developer.android.com/training/basics/firstapp/
  2. Copy all the JAR files into theapp/libs subdirectory.
  3. Navigate to File > Project Structure > app > Dependencies, click+, and select "2 File dependency".
  4. Select all the JAR files from thelibs subdirectory.

After that, we can access almost transparently the corresponding C/C++ APIs through the interface classes found in theorg.bytedeco.<moduleName> packages. Indeed, theParser translates the code comments from the C/C++ header files into the Java interface files, (almost) ready to be consumed by Javadoc. However, since their translation still leaves to be desired, one may wish to refer to the original documentation pages. For instance, the ones for OpenCV and FFmpeg can be found online at:

Build Instructions

If the binary files available above are not enough for your needs, you might need to rebuild them from the source code. To this end, project files on the Java side were created asMaven modules. By default, the Maven build also installs the native libraries on the native C/C++ side with thecppbuild.sh scripts, but they can also be installed by other means.

Additionally, one can find on the wiki page additional information about the recommendedbuild environments for the major platforms.

The Maven modules

The JavaCPP Presets depend on Maven, a powerful build system for Java, so before attempting a build, be sure to install and read up on:

Each child module in turn relies by default on the includedcppbuild.sh scripts, explained below, to install its corresponding native libraries in thecppbuild subdirectory. To use native libraries already installed somewhere else on the system, other installation directories thancppbuild can also be specified either in thepom.xml files or in the.java configuration files. The following versions are supported:

Once everything installed and configured, simply execute

$ mvn install --projects .,opencv,ffmpeg,etc. -Djavacpp.platform.root=/path/to/android-ndk/

inside the directory containing the parentpom.xml file, by specifying only the desired child modules in the command, butwithout the leading period "." in the comma-separated list of projects, the parentpom.xml file itself might not get installed. (The-Djavacpp.platform.root=... option is required only for Android builds.) Also specify-Djavacpp.cppbuild.skip as option to skip the execution of thecppbuild.sh scripts. In addition to-Djavacpp.platform=..., some of the presets can also be built against CUDA with-Djavacpp.platform.extension=-gpu or CPython with-Djavacpp.platform.extension=-python. Please refer to the comments inside thepom.xml file for further details. From the "platform" subdirectory, we can also install the "platform" artifacts with a similar command:

$cd platform$ mvn install --projects ../opencv/platform,../ffmpeg/platform,etc. -Djavacpp.platform.host

Thecppbuild.sh scripts

Running the scripts allows us to install easily the native libraries on multiple platforms, but additional software is required:

With the above in working order, the scripts get launched automatically as part of the Maven build lifecycle, but we can also manually execute

$ ANDROID_NDK=/path/to/android-ndk/ bash cppbuild.sh [-platform<name>] [-extension<name>]<install| clean> [projects]

where possible platform names are:

  • android-arm
  • android-arm64
  • android-x86
  • android-x86_64
  • ios-arm64
  • ios-x86_64
  • linux-armhf
  • linux-arm64
  • linux-ppc64le
  • linux-x86
  • linux-x86_64
  • macosx-arm64
  • macosx-x86_64
  • windows-x86
  • windows-x86_64

The-gpu extension as supported by some builds also require CUDA to be installed. (TheANDROID_NDK variable is required only for Android builds.) Please note that the scripts download source archives from appropriate sites as necessary.

To compile binaries for an Android device with no FPU, first make sure this is what you want. Without FPU, the performance of either OpenCV or FFmpeg is bound to be unacceptable. If you still wish to continue down that road, then replace "armeabi-v7a" by "armeabi" and "-march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16" with "-march=armv5te -mtune=xscale -msoft-float", inside various files.

Although JavaCPP can pick up native libraries installed on the system, the scripts exist to facilitate the build process across multiple platforms. They also allow JavaCPP to copy the native libraries and load them at runtime from the JAR files created above by Maven, a useful feature for standalone applications or Java applets. Moreover, tricks such as the following work with JNLP:

    <resourcesos="Linux"arch="x86 i386 i486 i586 i686">        <jarhref="lib/opencv-linux-x86.jar"/>        <jarhref="lib/ffmpeg-linux-x86.jar"/>    </resources>    <resourcesos="Linux"arch="x86_64 amd64">        <jarhref="lib/opencv-linux-x86_64.jar"/>        <jarhref="lib/ffmpeg-linux-x86_64.jar"/>    </resources>

Thanks to Jose Gómez for testing this out!

How Can I Help?

Contributions of any kind are highly welcome! At the moment, theParser has limited capabilities, so I plan to improve it gradually to the point where it can successfully parse large C++ header files that are even more convoluted than the ones from OpenCV, Caffe, or TensorFlow, but the build system could also be improved. Consequently, I am looking for help especially with the five following tasks, in no particular order:

  • Setting up continuous integration, preferably free on the cloud (Travis CI?)
  • Improving theParser (by using thepresets for LLVM and Clang?)
  • Providing builds for more platforms, as withlinux-armhf forRaspberry Pi, etc.
  • Replacing the Bash/Maven build combo by something easier to use (Gradle?)
  • Adding new presets as child modules for other C/C++ libraries (Caffe2, OpenNI, OpenMesh, PCL, etc.)

To contribute, please fork and create pull requests, or post your suggestionsas a new "issue". Thank you very much in advance for your contribution!


Project lead: Samuel Audetsamuel.audetat gmail.com
Developer site:https://github.com/bytedeco/javacpp-presets
Discussion group:http://groups.google.com/group/javacpp-project


[8]ページ先頭

©2009-2025 Movatter.jp