如何将二进制格式的图像转换为可分析的图像?
我正在研究一些简单的图像处理技术并遇到一个问题。我想要执行的任务是在给定图像中找到固定大小的圆圈。我想编写自己的代码用于学习目的。
我的图像是二进制的 JPEG 格式,如何量化图像以便对其进行定量分析?我想计算模板和图像之间的互相关性以匹配圆圈。
非常感谢您的帮助。
I am studying some simple image processing techniques and came across a question. A task that I want to carry out is to find circles of fixed size in a given image. I'd like to write my own code for learning purposes.
The image that I have is in JPEG format which is in binary, how can I quantize the image so that I can do quantitative analysis on it? I want to calculate the cross-correlation between the template and the image to match the circle.
Thanks a lot for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将 jpeg 二进制文件转换为矩阵数据结构吗?
例如:在 Java 中,您可以使用这样的代码从图像中获取矩阵
使用 javax imageio 包..
Can you try converting the jpeg binary into a matrix data-structure?
For ex: in Java you could use code like this to get matrix out of an image
using javax imageio package..