如何在android中将位图图像转换为二进制图像?
我需要将位图转换为我的硬件的二进制图像。你知道吗?
I need to convert bitmap to binary image for my hw.Do u know anything about that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要将位图转换为我的硬件的二进制图像。你知道吗?
I need to convert bitmap to binary image for my hw.Do u know anything about that?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
您是否正在寻找执行转换的算法?
最简单的方法是将每个像素值与固定阈值进行比较:如果像素值小于阈值,则相应的输出像素为黑色(0),否则为白色(1)。
如果您希望自动确定阈值,您可能需要实施 Otsu 方法。当您无法对图像中的像素分布做出太多假设时,该方法总体上可以完成正确的工作。
http://en.wikipedia.org/wiki/Otsu%27s_Method
作为参考,这就是 Mathematica 中的样子:
Otsu 方法的
Binarize[image,threshold]
和Binarize[img]
。Are you looking for an algorithm to perform the conversion?
The easiest way is to compare each pixel value with a fixed threshold: if the pixel value is less than the threshold, the corresponding output pixel is black (0), else it is white (1).
If you wish to determine the threshold automatically, you may want to implement Otsu's method. That method does a correct job overall when you can't make too many assumptions about the pixels distribution in your image.
http://en.wikipedia.org/wiki/Otsu%27s_Method
As a reference, that's how it looks like in Mathematica:
Binarize[image, threshold]
, andBinarize[img]
for Otsu's method.您可以使用位图转换函数并将其写入输出流,然后使用输出流为自己获取字节数组
我希望这有帮助
You can use the bitmap convert function and write it to an output stream and then use the output stream to get for yourself the byte array
I hope that helps
你可以看看这个链接converting Java bitmap to byte array,它可以转换位图到二进制,然后你应该看看 显示来自 byteArray 的图像
you can look this link converting Java bitmap to byte array, it can convert bitmap to binary, can then you should look at display image from byteArray
希望这有帮助...
Hope this helps...
也许这是你的代码
试试这个
perhaps this is your code
try this