Skip to content

Commit e007bb8

Browse files
authored
Create README.md
1 parent 40c1162 commit e007bb8

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# OpenCvInstaller
2+
Simple application to install OpenCV.
3+
4+
This assumes that the OpenCV artifacts are located in the FRC maven repository at `http://first.wpi.edu/FRC/roborio/maven/` or in the local maven repository.
5+
6+
For now, this is just a CLI app with no GUI.
7+
8+
## Supported platforms
9+
This currently supports
10+
- Windows (32- and 64-bit)
11+
- Mac OS X 10.4 or higher
12+
- Linux (32- and 64-bit)
13+
14+
## Command line arguments
15+
16+
Short name | Long name | Description | Argument
17+
---|---|---|---
18+
| | --help | Prints the help text |
19+
-v | --version | Sets the OpenCV version | The version in the format `x.x.x` e.g. `3.1.0`
20+
-j | --java | Flags the Java API for install. This does _not_ install JNI bindings
21+
-jni | --jni | Flags the JNI bindings for install
22+
-h | --headers | Flags the C++ headers for install
23+
-n | --natives | Flags the C++ native libraries for install
24+
| | --all | Installs all OpenCV artifacts
25+
| | --no-overwrite | Do not overwrite already installed files
26+
27+
## Usage
28+
```
29+
java -jar opencv-installer --version <version> --java --jni --headers --natives --no-overwrite
30+
```

0 commit comments

Comments
 (0)