gpt4 book ai didi

java - 在 OpenCV 中将 BufferedImage 转换为 Mat

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

当我尝试使用此函数将 BufferedImage 转换为 Mat 时。

public Mat matify(BufferedImage im) {
// Convert INT to BYTE
//im = new BufferedImage(im.getWidth(), im.getHeight(),BufferedImage.TYPE_3BYTE_BGR);
// Convert bufferedimage to byte array
byte[] pixels = ((DataBufferByte) im.getRaster().getDataBuffer())
.getData();

// Create a Matrix the same size of image
Mat image = new Mat(im.getHeight(), im.getWidth(), CvType.CV_8UC3);
// Fill Matrix with image values
image.put(0, 0, pixels);

return image;

}

我收到这个错误。

Exception in thread "main" java.lang.UnsupportedOperationException: Provided data element number (7955216) should be multiple of the Mat channels count (3)
at org.opencv.core.Mat.put(Mat.java:2549)
at Main.matify(Main.java:78)
at Main.doOpenCV(Main.java:48)
at Main.main(Main.java:40)

错误是由这一行引起的

image.put(0,0,pixels);

那么为什么我会收到这个错误?如何在 java 中将 BufferedImage 转换为 opencv Mat?

最佳答案

这对我有用

public Mat bufferedImageToMat(BufferedImage bi) {
Mat mat = new Mat(bi.getHeight(), bi.getWidth(), CV_8UC(3));

int r, g, b;
UByteRawIndexer indexer = mat.createIndexer();
for (int y = 0; y < bi.getHeight(); y++) {
for (int x = 0; x < bi.getWidth(); x++) {
int rgb = bi.getRGB(x, y);

r = (byte) ((rgb >> 0) & 0xFF);
g = (byte) ((rgb >> 8) & 0xFF);
b = (byte) ((rgb >> 16) & 0xFF);

indexer.put(y, x, 0, r);
indexer.put(y, x, 1, g);
indexer.put(y, x, 2, b);
}
}
indexer.release();
return mat;
}

关于java - 在 OpenCV 中将 BufferedImage 转换为 Mat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36723594/

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