From 8e928a624333c9c22c8650200d3e914798e1eca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Tue, 14 Jun 2016 10:08:49 +0200 Subject: [PATCH] Fix outdated GraphicsGems link --- skimage/exposure/_adapthist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/exposure/_adapthist.py b/skimage/exposure/_adapthist.py index 2f0ed859..3e591158 100644 --- a/skimage/exposure/_adapthist.py +++ b/skimage/exposure/_adapthist.py @@ -2,7 +2,7 @@ Adapted code from "Contrast Limited Adaptive Histogram Equalization" by Karel Zuiderveld , Graphics Gems IV, Academic Press, 1994. -http://tog.acm.org/resources/GraphicsGems/gems.html#gemsvi +http://tog.acm.org/resources/GraphicsGems/ The Graphics Gems code is copyright-protected. In other words, you cannot claim the text of the code as your own and resell it. Using the code is @@ -70,7 +70,7 @@ def equalize_adapthist(image, ntiles_x=None, ntiles_y=None, clip_limit=0.01, References ---------- - .. [1] http://tog.acm.org/resources/GraphicsGems/gems.html#gemsvi + .. [1] http://tog.acm.org/resources/GraphicsGems/ .. [2] https://en.wikipedia.org/wiki/CLAHE#CLAHE """ image = img_as_uint(image)