From 768ffaa6c8f34a0c5176fb9171c51f15b7ed3579 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 25 Oct 2017 20:26:27 -0400 Subject: [PATCH] Fixed two markdown links --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b809ebf..015bd84 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,7 @@ CIE Delta E 2000 (CIEDE2000) A C++ library containing a function to determine how similar two colors are. The code here is original, based on the psuedocode written in the paper [The CIEDE2000 Color-Difference Formula: Implementation Notes, Supplementary -Test Data, and Mathematical Observations](http://www.ece.rochester.edu/ -~gsharma/ciede2000/), by Gaurav Sharma, Wencheng Wu, and Edul N. Dalal. While +Test Data, and Mathematical Observations](http://www.ece.rochester.edu/~gsharma/ciede2000/), by Gaurav Sharma, Wencheng Wu, and Edul N. Dalal. While this is written in C++ so that I could place it in a namespace, there's nothing C++-specific about the implementation, and so it would be trivial to convert to C if required. The conversion is left as an exercise to the reader. @@ -21,8 +20,7 @@ code fragements with lines from the paper for tracability. There are ways to speed up and optimize this algorithm, which have not been attempted. A test program (`testCIEDE2000`) is built by default to run the -[tests](http://www.ece.rochester.edu/~gsharma/ciede2000/dataNprograms/ -CIEDE2000.xls) perscribed by the algorithm authors. Tested on OS X 10.10.2, +[tests](http://www.ece.rochester.edu/~gsharma/ciede2000/dataNprograms/CIEDE2000.xls) perscribed by the algorithm authors. Tested on OS X 10.10.2, and Ubuntu 14.04 LTS. Should work on Cygwin/MINGW, though there will likely need to be edits to the [Makefile](Makefile).