Skip to content

This Script simulates images based on how people with colorblindness would perceive it naturally. You can also vary the degree of colorblindness for simulating. This script can also be used to correct images, making differenciation of certain colors in an image easier for people with colorblindness.

License

tsarjak/Simulate-Correct-ColorBlindness

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simulate Colorblindness and Correct Colors for People with Colorblindness

This Script simulates images based on how people with colorblindness would perceive it naturally. You can also vary the degree of colorblindness for simulating. This script can also be used to correct images, making differenciation of certain colors in an image easier for people with colorblindness.

  • Easy to setup and run!
  • Simulate Protanopia, Deutranopia, Tritanopia and Hybrid Colorblindess (Protanopia+Deutranopia).
  • Correct colors in images for Protanopia, Deutranopia and Hybrid Colorblindness.
  • Vary the degree of colorblindness for both Simulation and Correction!
  • Extremly fast.
  • Use it from the command line (super easy), or use it as a library (advanced users).
  • Supports Daltonization and HSV Shifting algorithm.

Installation

Downloading the script

Go to the directory of your choice in terminal, and run the command below.

git clone https://github.com/tsarjak/Simulate-Correct-ColorBlindness.git

Installing dependencies

To run this script, you need to install three libraries for python. Use pip or conda (or any package manager of your choice) to download PIL, Numpy and OpenCV.

sudo pip install Pillow numpy opencv-python

Verifying the installation

Once you have successfully downloaded the scripts, and installed the dependencies, we can verify the installation. The ~/Examples_Check/ folder contains a sample image containing a number of Ishihara plate images. We want to run the script on this example image and see if everything is working fine.

# Go to the directory where you downloaded the scripts.
cd <dir where scripts are downloaded>/Simulate-Correct-Colorblindness

# Now run the examples script.
python run_examples.py

This will run all the available algorithms on the example image, and save the processed images in the Examples_Check/ directory. Check the directory and see if you have 5 processed + 1 original image. The processed (verified) and the original image are tagged in this readme file. If you want to verify further, have a look at the images in your computer and the images here.

Running the script

Control flags and description (For command line/terminal usage)

Flag           Args type         Description Default Needed?
-input string Path to the input image to simulate/correct. None Yes
-output string Directory where all simulated/corrected images will be stored. None Yes
-protanopia_degree float: [0,1] Degree of protanopia to simulate/correct. 1.0 No
-deutranopia_degree float: [0,1] Degree of deutranopia to simulate/correct. 1.0 No
-tritanopia_degree float: [0,1] Degree of tritanopia to simulate/correct. 1.0 No
-sim_protanopia None Use this flag to simulate Protanopia. False No
-sim_deutranopia None Use this flag to simulate deutranopia. False No
-sim_tritanopia None Use this flag to simulate tritanopia. False No
-sim_hybrid None Use this flag to simulate hybrid colorblindness. False No
-correct_colors None Use this flag to correct colors for protanopia and deutranopia. False No
-run_all None Use this flag to perform all operations (simulate + correct). False No

How to run the script

Go to the directory

cd ~/Simulate-Correct-ColorBlindness

Run the script with flags. Let's say we want to simulate only tritanopia, and correct the image for protanopia and deutranopia. We run the below command.

python recolor.py
  -input /Users/example_user/pictures/sample.jpg
  -output /Users/example_user/pictures/sample_dir/
  -protanopia_degree 0.9
  -deutranopia_degree 0.6
  -tritanopia_degree 0.5 
  -sim_tritanopia
  -correct_colors

If you want to run all the operations, you can also use the -all flag. We will keep the degrees as default (1.0) this time to focus on -run_all flag.

python recolor.py
 -input /Users/example_user/pictures/sample.jpg
 -output /Users/example_user/pictures/sample_dir/
 -run_all

If you want to run correction for only protanopia, you can set the deutranopia_degree value to 0. Essentially forcing the algorithm to not assume deutranopia.

 python recolor.py
   -input /Users/example_user/pictures/sample.jpg
   -output /Users/example_user/pictures/sample_dir/
   -deutranopia_degree 0
   -correct_colors

Example Simulation Results:

Original Image:

example_original

Simulating Protanopia, Degree = 1.0:

example_simulate_protanopia

Simulating Deutranopia, Degree = 1.0:

example_simulate_deutranopia

Simulating Tritanopia, Degree = 1.0:

example_simulate_tritanopia

Simulating Hybrid ColorBlindness, Protanopia_degree = Deutranopia_degree = 0.5

example_simulate_hybrid

Example Correction Results:

Here, we will first correct the images, and then simulate the corrected image, to see if the difference is noticable.

Protanopia

Correcting for Protanopia, Protanopia_degree = 0.9, Deutranopia_degree = 0.0

ex_corrected_protanopia

Simulating the corrected image for protanopia. Protanopia_degree = 0.9.

ex_simulate_corrected_protanopia

Deutranopia

Correcting for Deutranopia, Deutranopia_degree = 0.9, Protanopia_degree = 0.0

ex_corrected_deutranopia

Simulating the corrected image for Deutranopia. Deutranopia_degree = 0.9.

ex_simulate_corrected_deutranopia

About

This Script simulates images based on how people with colorblindness would perceive it naturally. You can also vary the degree of colorblindness for simulating. This script can also be used to correct images, making differenciation of certain colors in an image easier for people with colorblindness.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages