我需要一些帮助。我正在使用OpenCV库,但是当我尝试从绝对路径加载文件时,它将无法加载。我不知道问题出在哪里,因为当我尝试从项目文件夹加载它时,它可以工作。这是我正在使用的代码的主要部分:
try{
System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
Mat source = Imgcodecs.imread("D:/ImageSource/test1.jpg",Imgcodecs.CV_LOAD_IMAGE_COLOR);
Mat destination = new Mat(source.rows(),source.cols(),source.type());
System.out.println(source.width());
source.convertTo(destination, -1, alpha, beta);
Imgcodecs.imwrite("test1WithAlpha2Beta50.jpg", destination);
}catch (Exception e) {
System.out.println("error: " + e.getMessage());
}