1 | initial version |
It is simple, you can do it like this:
Warn: before you go to next step, first ensure that you already have Java installed and it is present in your environment path. And also you have the OpenCV native lib in your environment path
And it is that.
2 | No.2 Revision |
It is simple, you can do it like this:
Warn: before you go to next step, first ensure that you already have Java installed and it is present in your environment path. And also you have the OpenCV native lib in your environment path
javac -cp .class
files, then:
java -cp .:path/to/opencv3xx.jar .class
extension is optional.And it is that.
3 | No.3 Revision |
It is simple, you can do it like this:
Warn: before you go to next step, first ensure that you already have Java installed and it is present in your environment path. And also you have the OpenCV native lib in your environment path
javac -cp .:path/to/opencv3xx.jar.:path/to/opencv3xx.jar YourJavaFile.java
.class
files, then:java -cp .:path/to/opencv3xx.jar YourJavaFile.class
here .class
extension is optional.And it is that.