gpt4 book ai didi

java - 如何从 mat 对象获取整数数组,反之亦然

转载 作者:太空宇宙 更新时间:2023-11-03 22:43:43 24 4
gpt4 key购买 nike

我试过这 1 个代码,但我不确定是否正确

这是我试过的代码:

Mat originalImage = Highgui.imread(path);
int[] imageInByte = new int[(int) (originalImage.total() * originalImage.channels())];

我还想知道如何从整数数组中获取垫子?

最佳答案

分配数组后,

byte imageInByte[] = new byte[originalImage.total() * originalImage.channels()];

您可以从 C++/JNI 复制数组,

originalImage.get(0, 0, imageInByte);

在 C++/JNI 中更新数组

originalImage.put(0, 0, imageInByte);

关于java - 如何从 mat 对象获取整数数组,反之亦然,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50915888/

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