Skip to content

Instantly share code, notes, and snippets.

View GulerEnes's full-sized avatar
🎯
Focusing

Enes GÜLER GulerEnes

🎯
Focusing
View GitHub Profile
@skt7
skt7 / dominat-colors.py
Last active November 10, 2022 15:04
Dominant Colors in an image using python opencv and scikit-learn
import cv2
from sklearn.cluster import KMeans
class DominantColors:
CLUSTERS = None
IMAGE = None
COLORS = None
LABELS = None