Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 884 Bytes

File metadata and controls

46 lines (29 loc) · 884 Bytes

English | Türkçe

HTTP Live Video Stream From OpenCV

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.

Architecture

Dependency

  • OpenCV 3+
  • Java 6+

How to run

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");