如何像乐高应用程序一样创建图像马赛克?
我正在尝试将图像变成马赛克砖,例如 乐高照片应用程序。
它是如何完成的,在哪里可以找到更多信息?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您基本上需要遍历像素,计算每个 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.