使用BufferedImage.TYPE_USHORT_GRAY不保存灰度图像

时间:2018-05-17 15:45:32

标签: java bufferedimage kinect-v2

我正在尝试从Kinect v2中保存深度图,该深度图应该以灰度显示,但每次我尝试使用类型BufferedImage.TYPE_USHORT_GRAY将其保存为JPG文件时,字面上没有任何反应(屏幕上或控制台)。

如果我使用类型BufferedImage.TYPE_USHORT_555_RGBBufferedImage.TYPE_USHORT_565_RGB,我设法保存它,但不是灰度,而是出现蓝色或绿色深度图。

在下面找到代码示例:

short[] depth = myKinect.getDepthFrame();
int DHeight=424;
int DWidth = 512;
int dx=0;
int dy = 21;

BufferedImage bufferDepth = new BufferedImage(DWidth,  DHeight, BufferedImage.TYPE_USHORT_GRAY);

try {
    ImageIO.write(bufferDepth, "jpg", outputFileD);
} catch (IOException e) {
    e.printStackTrace();
}

我是否有任何错误将其保存为灰度? 提前致谢

1 个答案:

答案 0 :(得分:1)

您必须先将数据(深度)分配给BufferedImage(bufferDepth)。

一种简单的方法是:

short[] depth = myKinect.getDepthFrame();
int DHeight = 424;
int DWidth = 512;
int dx = 0;
int dy = 21;

BufferedImage bufferDepth = new BufferedImage(DWidth, DHeight, BufferedImage.TYPE_USHORT_GRAY);

for (int j = 0; j < DHeight; j++) {
    for (int i = 0; i < DWidth; i++) {
        int index = i + j * DWidth;
        short value = depth[index];
        Color color = new Color(value, value, value);
        bufferDepth.setRGB(i, j, color.getRGB());
    }
}

try {
    ImageIO.write(bufferDepth, "jpg", outputFileD);
} catch (IOException e) {
    e.printStackTrace();
}