Skip to main content

A brief description of your project.

Project description

ColorCompass

Color Compass Logo


Overview

ColorCompass is a Python library designed to efficiently find the closest named color to a given RGB value by using an efficient Euclidean distance calculation across a range of predefined colors.

How it Works

The Euclidean Distance Calculation

The crux of ColorCompass lies in utilizing the Euclidean Distance formula to find the closest matching color name for a given RGB input. Given an RGB value, the Euclidean Distance between two points (color values, in our context) in a three-dimensional space (R, G, B) is calculated as:

Distance = √(R_2 - R_1)^2 + (G_2 - G_1)^2 + (B_2 - B_1)^2

Here,

  • (R_1, G_1, B_1) and (R_2, G_2, B_2) are the RGB values of the two colors being compared.
  • The formula basically measures the straight-line distance between two points in a 3D space (your two colors, in the RGB color space).

The Algorithmic Approach

  1. Input Color Value: A user inputs an RGB color value that they'd like to map to a named color.

  2. Distance Calculation: For the input color, ColorCompass calculates the Euclidean Distance between the input RGB value and all stored RGB values in the library's color database, effectively identifying which stored color is closest (has the minimal Euclidean Distance) to the provided input.

  3. Return Closest Color: The algorithm identifies the color name associated with the RGB value in the database that has the smallest Euclidean Distance to the input color. This color name is returned to the user as the closest match.

🚀 Installation

You can install ColorCompass using pip:

pip install color-compass

🎨 Basic Usage

To find the closest color name for a given RGB value, simply use the find_closest_color function as follows:

from colorcompass import find_closest_color

# Define your target color as an RGB list
target_color = [152, 251, 152]

# Use the function to find the closest color name
closest_color_name = find_closest_color(target_color)

# Print the found color name
print(closest_color_name)

Full Example

from colorcompass import find_closest_color

def main():
    # Define some target colors
    target_colors = [
        [152, 251, 152],
        [70, 130, 180],
        [255, 0, 0]
    ]
    
    # Find and print the closest color name for each target color
    for color in target_colors:
        print(f"Closest color to RGB{tuple(color)} is {find_closest_color(color)}")

if __name__ == "__main__":
    main()

📄 License

ColorCompass is licensed under the MIT License. See the LICENSE file for more details.

🙌 Contributing

Contributions are welcome! Please read the CONTRIBUTING file for details on our code of conduct and the process for submitting pull requests.

📞 Contact

If you have questions or issues, please open an issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

colorcompass-0.1.1.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

colorcompass-0.1.1-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file colorcompass-0.1.1.tar.gz.

File metadata

  • Download URL: colorcompass-0.1.1.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for colorcompass-0.1.1.tar.gz
Algorithm Hash digest
SHA256 9db54c30ad9f5bdaf3357b8f8aac271237fde10796ec76404bbd272267e69ba7
MD5 32516cfefd0e313c3ae1b54f721b9ffd
BLAKE2b-256 2a8dcb43cfde6a79e0a9c0d055c5b89f2bd4d1a4e57d5fd28ad804b6aa9bdc13

See more details on using hashes here.

File details

Details for the file colorcompass-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for colorcompass-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e18c9c9aaabfe56a3d428c48b085976837bae7dfd6ec0b50a275afbb540f01c4
MD5 3198ebffc629c6dbb1128be307a73262
BLAKE2b-256 3a4dfcd75771caa8315fa94fe006449d836c373b8e89b921a84198f2042eff2d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page