Is there any way to get OpenCV from repository? Which artifact should I add to pom.xml? Every tutorial I\'d found is from \'14 and it seems like something chang
pom.xml
Add the following dependency in your POM file:
org.openpnp opencv 3.2.0-0
and replace the following lines:
System.loadLibrary(Core.NATIVE_LIBRARY_NAME)
with
nu.pattern.OpenCV.loadShared();
This should solve the problem in WINDOWS also. Happy Coding.