From 89911f3ca50cc264321b74f1c8785f22eba4924b Mon Sep 17 00:00:00 2001 From: nxshock Date: Sat, 22 Jul 2017 11:43:23 +0500 Subject: [PATCH] README update --- README.rst | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index fd585a5..fad8e0a 100644 --- a/README.rst +++ b/README.rst @@ -48,11 +48,15 @@ You may use custom comparator of colors: 0.5, // with 50% thresold colorcrop.CmpCIE76) // using CIE76 standart for defining color difference -Available comparators are: +List of available comparators: -* ``CmpRGBComponents`` -- simple RGB components difference: ``abs(r1-r2)+abs(g1-g2)+abs(b1-b2)`` (default); -* ``CmpEuclidean`` -- `Euclidean difference `_; -* ``CmpCIE76`` -- difference of two colors defined in `CIE76 standard `_. +================ ============================================================================================================= +Comparator Description +================ ============================================================================================================= +CmpRGBComponents simple RGB components difference: ``abs(r1-r2)+abs(g1-g2)+abs(b1-b2)`` (default); +CmpEuclidean `Euclidean difference `_; +CmpCIE76 difference of two colors defined in `CIE76 standard `_. +================ ============================================================================================================= Examples --------