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

后端 未结 2 355
野性不改
野性不改 2021-01-15 04:33

For instance, consider the DFT or DCT. Precisely, what would be the differences between an image transformed by sub-blocks, and an image transformed whole? Is the resulting

相关标签:
2条回答
  • 2021-01-15 05:17

    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 think (block_y_size × block_y_size)2

    0 讨论(0)
  • 2021-01-15 05:24

    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.

    0 讨论(0)
提交回复
热议问题