Quadtree Image Analysis Tool
- Chaitanya Singh
- Jul 25
- 1 min read

Implemented a Quadtree-inspired image analysis tool using Binary Search Trees (BSTs) to break down images into hierarchical regions of nearly uniform color. The project involved comprehensive BST implementation, where each BST node represented an image region. Regions with uniform colors were represented as large regions with known coordinates, size, and color, optimizing memory usage. Non-uniform regions were subdivided, providing a highly efficient method for image decomposition.
Comments