io.quarkiverse.opencv.runtime.OpenCVRecorder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-opencv Show documentation
Show all versions of quarkus-opencv Show documentation
Build applications with OpenCV
package io.quarkiverse.opencv.runtime;
import io.quarkus.runtime.annotations.Recorder;
import nu.pattern.OpenCV;
@Recorder
public class OpenCVRecorder {
public void loadOpenCVLibrary() {
OpenCV.loadLocally();
}
}