I'm building a face recognition app and i have to include the opencv_java411.dll
to my project.
Regarding the coding, i'm loading some libraries from that dll as follows:
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
This is the directory where I've put my dll file
When i'm trying to deploy it though, it does not appear in the output list
And as expected, the deployedjar
file does not include it
How can i include it properly?