https://github.com/wpiroboticsprojects/opencv-maven
Maven repository for OpenCV artifacts
https://github.com/wpiroboticsprojects/opencv-maven
Last synced: 3 months ago
JSON representation
Maven repository for OpenCV artifacts
- Host: GitHub
- URL: https://github.com/wpiroboticsprojects/opencv-maven
- Owner: WPIRoboticsProjects
- Created: 2016-09-11T04:25:56.000Z (over 9 years ago)
- Default Branch: mvn-repo
- Last Pushed: 2019-05-07T14:43:31.000Z (about 7 years ago)
- Last Synced: 2025-01-02T00:42:14.069Z (over 1 year ago)
- Size: 63.2 MB
- Stars: 3
- Watchers: 7
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# opencv-maven
A maven repository for OpenCV artifacts
## Usage
### Gradle dependency
To use this as a maven repository:
```groovy
repositories {
maven {
url 'https://github.com/WPIRoboticsProjects/opencv-maven/raw/mvn-repo'
}
}
```
### Available platforms
Binaries are currently only available for OS X and 64-bit linux. 32-bit linux and 32/64 bit Windows are planned for support as well. The Java library and C++ headers are OS-independent and may be used on any operating system.
Platform-specific artifacts have the platform in the artifact ID. For example, native libraries for 32-bit windows are specified by
```groovy
opencv-natives-windows-x86
```
#### Platform format
Platform formats:
| OS | Architecture | Platform |
|---|---|---|
| Windows | x86 | windows-x86 |
| Windows | x86_64 | windows-x86_64 |
| Mac OS X | x86_64 | osx-x86_64 |
| linux | x86 | linux-x86 |
| linux | x86_64 | linux-x86_64 |
| linux | arm | linux-arm |
| linux | armhf | linux-armhf |
## Artifact name and version formats
### Names
Available packages are:
| Name | Description |
|---|---|
| opencv-java | Java library. Does _not_ include JNI |
| opencv-jni | JNI bindings |
| opencv-headers | C++ headers |
| opencv-natives | Compiled native binaries |
### Versions
Currently, only OpenCV 3.1.0 is available