Color_Detection_Project_Report
Color_Detection_Project_Report
Paritosh Chaudhari
Email: [[email protected]]
Abstract
This project presents a simple application for detecting colors in images using Python. It uses OpenCV for
image processing and Pandas for managing a dataset of color names and RGB values. When a user clicks
on an image, the system detects the color at that pixel and displays its name. This tool can be used in design,
Keywords
I. Introduction
Color detection is widely used in image editing, robotics, and assistive tools. This project aims to identify the
name of any color in an image when clicked by the user. It uses basic computer vision techniques without the
- Dataset: A CSV file with 865 color names and corresponding RGB/hex values is used for matching.
- Approach: On mouse click, RGB values are fetched from the image and compared to the dataset using
III. Implementation
IV. Results
The application works well for different images and lighting conditions. It accurately displays the color name
based on RGB comparison. Some edge cases may arise where very similar shades are hard to distinguish.
V. Applications
VI. Conclusion
This project demonstrates how simple Python libraries can be used to create a practical tool for color
detection. It can be extended for more advanced features like live video detection or color categorization.
References