从 8 位灰度图像中抓取像素
我有 8 位灰度图像。我需要从中抓取像素到字节数组。因此数组中一个像素 = 1 字节,但抓取器总是将像素作为整数(4 字节)抓取。你知道如何告诉他抓取一个像素作为一个字节吗?
I have 8 bit greyscale image. I need to grab pixels from it, to byte array. So one pixel=1byte in array, but grabber always grabs pixel as integer(4bytes). Do you kknow how to tell him to grab one pixel as one byte ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这个问题需要更多澄清,但 4 字节灰度像素始终采用 0x00ABABAB 的形式。由于 AB 在最后 3 个字节中是相同的,因此您可以简单地右移所需的位。
Perhaps this question requires more clarification, but a 4-byte grayscale pixel will always be in the form 0x00ABABAB. Since AB are the same in the last 3 bytes, you can simply right shift off the bits that you need.