/detect-color

Simple application to detect the color that you desire in an image.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

DETECT COLOR IN AN IMAGE

Example

Detect Blue Color alt text

Usage

Add the range of color that you want to detect

  boundaries = [
   ([0, 0, 0], [255,50, 50]), #blue
  # ([0, 0, 0], [50,255, 50]), #green
  # ([0, 0, 0], [50,50, 255]), #red
  ]

Launch the program with example image

  $ python launcher.py 

Launch the program with your custom image

  $ python launcher.py --image path-image

License

This project is licensed under the GPL V3 License - see the LICENSE file for details