English | Türkçe
OpenCV is a sample project that is read from the video source (Camera, File System, NVR, DVR etc.) and displays the processed image via the http protocol. OpenCV version 3.1 is used. You can see the architecture of the project below.
- OpenCV 3+
- Java 6+
If you use as follows
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
set JVM parameter
-Djava.library.path=/yourpath/opencv-3.4.0/build/lib
or just use it
#for mac or linux
System.loadLibrary("/yourpath/opencv-3.4.0/build/lib");
#for windows
System.loadLibrary("/yourpath/opencv_java3xx");