Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

If you are working with Eclipse-IDE you need:

  1. Import into the project path the .jar library: opencv-246.jar
  2. Then, inside the imported library, you must edit "Native Library Location" to the folder where is your opencv-246.dll
  3. In your code call the library dll through

    System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
    

    You have to do this call just once in all the program.

More info