You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,6 @@ This assumes that the OpenCV artifacts are located in the FRC maven repository a
5
5
6
6
For now, this is just a CLI app with no GUI.
7
7
8
-
_Note: no OpenCV artifacts currently exist on the FRC maven repository. This project will **not** work until they have been deployed._
9
-
10
8
## Supported platforms
11
9
This currently supports
12
10
@@ -16,6 +14,19 @@ This currently supports
16
14
17
15
ARM is not currently supported.
18
16
17
+
### Windows notes
18
+
19
+
This doesn't work on Windows. At all. JNI and native binaries need to be built and the install paths need to be figured out.
20
+
21
+
### Linux notes
22
+
23
+
JNI and native bindings will be installed in `/usr/local/lib` and the headers will be installed in `/usr/local/include`. If you don't have write access to these folders, you can run the installer with
24
+
25
+
`sudo java -Duser.home=$HOME -jar ...`
26
+
27
+
Make sure that `/usr/local/lib` is on `LD_LIBRARY_PATH` or the JNI bindings won't be loaded by the JVM.
0 commit comments