Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tiling (allowing parallel processing) #9

Open
nigeltao opened this issue Nov 27, 2021 · 2 comments
Open

Tiling (allowing parallel processing) #9

nigeltao opened this issue Nov 27, 2021 · 2 comments

Comments

@nigeltao
Copy link
Owner

Context:
phoboslab/qoi#33

@juarezr
Copy link

juarezr commented Apr 15, 2023

@nigeltao ,

I was wondering about the possible benefits that a space-filling curve like Hildeberg Curve could bring against the row-column (left-right/top-bottom) approach of QOI:

  • Exploit locality (pixels with the same color may be relatively close to each other in rows and also in columns)
  • Make more straightforward partitioning on the power of 2 tiles. E.:
    • Center to corners
    • Corners to center
    • Rectangular, L-shaped, or T-shaped tiles
    • Multi-level tilling (follow the curve first on tiles of predefined size, then on pixels inside each tile)
  • Enable multi-processing/parallelism on the encoder/decoder by exploiting the tilling by a pool of threads each one working on its specific tile.

@nigeltao
Copy link
Owner Author

Space-filling curves are issue #6.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants