gpt4 book ai didi

java opencv原生库和内存限制

转载 作者:太空宇宙 更新时间:2023-11-03 21:34:28 29 4
gpt4 key购买 nike

我需要使用 OpenCV 3.1.0 分配相当大的矩阵。我正在使用 -Djava.library.path=$MODULE_DIR$\opencv\310\windows\x64\-Xmx8g 参数运行以下代码:

public class MatTest extends BaseTest {

static { System.loadLibrary(Core.NATIVE_LIBRARY_NAME);}

@Test
public void tooBig() throws IOException {
float[] data = new float[13320*67294];
Mat iMatrix = new Mat(13320, 67294, CvType.CV_32FC1);
iMatrix.put(0, 0, data); //exception here
}

@Test
public void medium() throws IOException {
float[] data = new float[13918*13240];
Mat iMatrix = new Mat(13918, 13240, CvType.CV_32FC1);
iMatrix.put(0, 0, data);
}
}

第一个测试有效,因为秒抛出(行:iMatrix.put(0, 0, data))

java.lang.Exception: unknown exception

at org.opencv.core.Mat.nPutF(Native Method)
at org.opencv.core.Mat.put(Mat.java:953)
at my.app.MatTest.tooBig(MatTest.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55)

是 OpenCV 还是原生库的使用限制?是否有针对此类问题的解决方法?

已编辑:附上完整代码和堆栈跟踪

最佳答案

这是 OpenCV 的问题。有一些 signed int 类型的变量作为矩阵大小,超出了我的巨大数组。查看源代码:link .解决方法是创建较小的 Mats 列表并使用 vconcat(slices, result) 函数加入它们。

关于java opencv原生库和内存限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38708713/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com