最先进的有损压缩程序

发布于 2024-10-12 12:36:06 字数 1566 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

梦情居士 2024-10-19 12:36:06

@用户562688:
压缩真正的随机数是不可能的。证明的想法是,如果您尝试将 100 位压缩到 90 位,那么您需要将所有 2^100 个字符串放入大小为 2^90 的空间中,该空间太小了。因此,会出现很多冲突(平均至少2^10次),这意味着你无法将其解码回原始字符串。

但要回答你原来的问题,尽管 Johnson-Lindenstrauss 算法 不是作为一种压缩算法本身,它与图像压缩中的算法具有一些相似的属性。

Johnson-Lindentrauss 算法的目标是在 R^n 中获取大量向量(例如 n 个向量),并找到到更小的空间 R^log(n) 的映射,使得所有向量之间的距离变化不大。

@user562688:
Compressing a truly random number can't be done. The proof idea is that if you're trying to compress 100 bits to 90 bits, then you need all of the 2^100 strings to fit inside a space of size 2^90, which is too small. Therefore, there will be many collisions (at least 2^10 on average), which means that you cannot decode it back to the original string.

But to answer your original question, although the Johnson-Lindenstrauss algorithm isn't a compressing algorithm per-se it has some similar properties to what's done in image compression.

The goal of the Johnson-Lindentrauss algorithm is to take lots of vectors (say n vectors) in R^n, and to find a mapping to a much smaller space, R^log(n), such that the distances between all the vectors do not change by much.

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