An open API service indexing awesome lists of open source software.

https://github.com/fiddlydigital/fastmap

A simple 2D map that is optimized for speed.
https://github.com/fiddlydigital/fastmap

array cimage data map

Last synced: 8 months ago
JSON representation

A simple 2D map that is optimized for speed.

Awesome Lists containing this project

README

          

# FastMap

A simple 2D map that is optimized for speed.

* Internally, it is a 1D array that is accessed using 2D coordinates. This makes is extremely fast for large maps, as it avoids the overhead and mess of nested arrays.
* Inspired by the CImage class in Vladimir Kovalevsky's book "Modern Algorithms for Image Processing"