将字节转换为位
我目前正在开发 Visual C++ 2008 Express 版本。我的项目基于读取卫星图像并对它们应用图像处理。 每个图像文件的格式为“.0FM”,大小为 8Mb。
到目前为止,我已经能够使用 FileStream 读取文件(即“*.0FM”)并将其读取到字节数组中,字节数组的大小为 8,000,000。
然后,我将字节数组中的每个元素转换为十进制,因此现在数组中的每个元素的值范围为 0 - 255。 现在我必须将数组中的每个十进制值转换为其二进制值。 例如,86 应该转换成 1010110
我真的被困在这里了。我尝试了 System::Decimal::GetBits() 方法,但该方法所做的只是将 86 存储到 bits[0] 中,
Decimal d = 86;
array<int>^ buf_bits = Decimal::GetBits(d);
此代码导致将值 86 存储在 buf_bits[0] 中,我没有得到 1010110。
I am currently working on visual c++ 2008 express edition. My project is based on reading satellite images and applying image processing on them.
Each image file has an ".0FM" format and is of 8Mb size.
Until now I have been able to read the file (i.e., "*.0FM" ) using a FileStream and into a Byte array, the size of the byte array is 8,000,000.
I then converted each element off the byte array to Decimal, so now each element in the array has values ranging from 0 - 255.
Now I have to convert each of these Decimal values in the array into its binary values.
E.g., 86 should be converted into 1010110
I am really stuck here. I tried System::Decimal::GetBits()
method but all this method does is that it stores 86 into bits[0],
Decimal d = 86;
array<int>^ buf_bits = Decimal::GetBits(d);
This code results in the storing of value 86 in buf_bits[0], I do not get 1010110.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您永远不会直接使用这些位。将它们保留为字节。如果您需要检查标志或其他内容,请使用以下技术:
You don't ever work with the bits directly. Leave them as bytes. If you need to check flags or something use something like the following technique:
首先,如果您的值范围为 0 到 255,则应使用 byte(或 unsigned char)。
然后,您需要使用左移/右移运算符。
在伪代码中,其中 num 是 0-255 字节:
First, if your values are ranging from 0 to 255, you should use byte (or unsigned char).
Than, you need to use the Shift left / Shift right operators.
in psuedo code, where num is your 0-255 byte: