如何像乐高应用程序一样创建图像马赛克?

发布于 2024-11-08 03:03:33 字数 151 浏览 0 评论 0原文

我正在尝试将图像变成马赛克砖,例如 乐高照片应用程序。

它是如何完成的,在哪里可以找到更多信息?

I'm trying to play around with turning an image into mosaic bricks like the Lego Photo app.

How is it done, and where can I find more info?

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

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

发布评论

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

评论(1

饭团 2024-11-15 03:03:33

您基本上需要遍历像素,计算每个 4x4 像素块的平均颜色。获得此平均颜色后,您可以将其“舍入”为可在马赛克中使用的最接近的颜色。我不知道它的具体细节,但是这个 示例代码正是您想要的。

You basically need to iterate through the pixels, to calculate the average colour for say every 4x4 block of pixels. Once you have this average colour, you 'round' it to the nearest colour that you can use in your mosaic. I don't know the specifics of it but this sample code does exactly what you want.

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