Coloctree
This is an implementation of an Octree on Color.
My initial goal is to create allRGB images, but you can reuse it for others goals.
It is also a clear and easy to understand Octree implementation (with search for the nearest points), as there aren't so many Octree implementation available on the web.
Examples
There is a bunch of binaries availible with the crate to generate allRGB images.
Here are example of images generated






To-do
- [ ] Implement a k-nearest search, based on a queue and iterative
- [ ] Publish a octree implementation that is not specialised for Color (will be another crate)
- [ ] Reduce memory usage and remove un-necessary copy
- [ ] Use it for color quantization