Android 摄影应用双重曝光
我想创建一个 Android 应用程序,它将两张照片组合在一起,创建类似于双曝光照片中的内容。你能给我一些关于如何做到这一点的想法吗?
I would like to create an android app that would combine two photographs together to create something similar to what you would see in a double exposure photograph. Can you give me any ideas on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获得真正的双重曝光,您需要做的就是将每个像素的 R/G/B 值直接相加,每个分量的上限为 255(至少 24bpp)。如果它太亮,您可以随后将其降低一些。
To get a true double-exposure, all you should need to do is add together the R/G/B values for each pixel with straight addition, with an upper limit of 255 for each component(for 24bpp at least). If it's too bright, you can always reduce it down some afterward.