如何编写图像马赛克生成器

发布于 2024-09-13 02:31:21 字数 468 浏览 18 评论 0原文

任务如下:如何从大量图像中创建选定的图片马赛克。 我的第一个尝试是使用进化算法。其中基因型表示原始图像到马赛克网格中位置的映射,根据与原始图像的相似度来评估个体。实际上,在基本方法中,每个图块都可以单独处理,因此迭代网格并匹配最佳图像就足够了。但我还不知道如何定义相似度函数。 单纯的像素明智比较(r,g,b)差异可能过于严格。我认为有些 图像处理算法应该像直方图平衡一样应用,以优化子图像和我们尝试定位它的区域之间的相似性。

它类似于创建蒙娜丽莎的遗传算法 类似。

可以在此处找到马赛克示例。

Task is following: how to create selected picture mosaic from large number of images.
My first shot would be using evolutionary algorithm. Where genotype represents mapping of original images to positions in mosaic grid, and individual is evaluated according to similarity to original picture. Actually in basic approach each tile can be treated separately so iterating through the grid and matching best image would be sufficient. But I don't know yet how to define similarity functions.
Naive pixel wise comparing (r,g,b) difference probably would be too strict. I think that some
image processing algorithms should be apply like histogram balancing to optimize similarity between subimage and region where we try to locate it.

It would be similar to genetic algorithm that creates Mona Lisa resemble.

Sample mosaic can be found here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

剩余の解释 2024-09-20 02:31:21

好吧,我这样做了(但我停在某个地方)看看:
GetAMosaic 这是一个测试项目,需要再次执行一些 C 操作:-) 所以不要查看那里的每个细节。

Well I did that (but I stopped somewhere) Look at:
GetAMosaic It was a testproject to do some C again:-) So dont look at every detail there.

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