Exploring Clustering Techniques for Image Analysis
Project Breakdown
This project investigates the use of clustering techniques in two different applications:
1. Clustering for Data Exploration - Using Fashion MNIST, we group similar clothing items to understand patterns in the dataset.
2. Image Compression via Color Quantization - Using the Lena image, we apply clustering to reduce the number of colors, achieving compression.
We employ Agglomerative Clustering, Gaussian Mixture Models (GMM), and DBSCAN for image clustering, and K-Means for image compression.
Explore Clustering Techniques
Evaluate Clustering Effectiveness
Optimize Image Compression
Key Findings
Agglomerative Clustering with 10 clusters provided the best separation in Fashion MNIST.
Gaussian Mixture Models (GMM) captured meaningful cluster centers, with improved interpretability.
DBSCAN struggled with Fashion MNIST, producing moderate Rand Index scores (0.51 - 0.53).
K-Means compression (K=4 & K=10) demonstrated a trade-off between visual quality and compression.
The Elbow Method identified K=4 as optimal for balancing compression and image fidelity.
