如何将二进制格式的图像转换为可分析的图像?

发布于 2024-11-05 06:04:36 字数 156 浏览 0 评论 0原文

我正在研究一些简单的图像处理技术并遇到一个问题。我想要执行的任务是在给定图像中找到固定大小的圆圈。我想编写自己的代码用于学习目的。

我的图像是二进制的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_畞蕅 2024-11-12 06:04:36

您可以尝试将 jpeg 二进制文件转换为矩阵数据结构吗?

例如:在 Java 中,您可以使用这样的代码从图像中获取矩阵
使用 javax imageio 包..

import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;

File file = new File("file.jpg");
BufferedImage img;
img = ImageIO.read(file);

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..

import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;

File file = new File("file.jpg");
BufferedImage img;
img = ImageIO.read(file);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文