Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
给定两张图像,您可以通过扫描每一行和差异找到深度,有人知道如何去除噪音吗?
例如,如果预期的输出是左边而我的输出是正确的
http://sphotos-a.xx.fbcdn.net/hphotos-prn1/28905_10151279071291130_752649318_n.jpg
有没有人有任何编码技巧来摆脱一些噪音?
我假设这是由您使用的硬件引起的。
您可以根据相邻像素平均出像素颜色。遍历每一列/行并根据周围的颜色调整颜色。对整个图像进行多次传递以产生更大的效果。
这不会完全消除噪点,但会提供更柔和的图像。
此外,如果您通过图形卡传递它,您可能会考虑编写一个着色器。这将大大提高速度。