Comme le titre l'indique, je suis tombé par hasard en essayant d'utiliser la version java d'OpenCV avec IntelliJ IDEA, alors prenez note.
Téléchargez et installez le dernier sur https://opencv.org/releases.html.
Dans File-> Profect Structure-> Libraries,
Sélectionnez [+] -> java et spécifiez C: \ opencv \ build \ java \ opencv \ -340.jar
.
Exécuter-> Modifier les configurations ...
Entrez -Djava.library.path = C: \ opencv \ build \ java \ x64
dans les options de la VM:
x64
-> x32
C: \ opencv
par l'emplacement où il a été installé.public class OpenCVMain(){
public static void main(String[] args){
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
System.out.println("Hello, OpenCV");
}
}
Hello, OpenCV
Recommended Posts