Why do image compression algorithms process the image by sub-blocks?

谁说我不能喝 提交于 2019-12-01 23:05:56
ctrl-alt-delor

They are designed so they can be implemented using parallel hardware. Each block is independent, and can be calculated on a different computing node, or shared out to as many nodes as you have.

Also as noted in an answer to Why JPEG compression processes image by 8x8 blocks? the computational complexity is high. I thing block_y_size2 × block_y_size2

It's to make the image smaller. There a many ways to subdivide an image into blocks. The most simple is by complete rows. More advance tiling is with fractals, i.e hilbert curve. Jpeg 2000 uses a hilbert curve. It uses additional spatial information and it's also used in mapping applications.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!