From ebef821a70041cf230b2ebacb10ed2262816a5a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20B=C3=B8=20Fl=C3=B8ystad?= Date: Thu, 11 Jul 2013 10:51:44 +0200 Subject: [PATCH] unwrap: Add citation for 3D. --- skimage/exposure/unwrap.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/skimage/exposure/unwrap.py b/skimage/exposure/unwrap.py index 01b996e5..04e7d9c6 100644 --- a/skimage/exposure/unwrap.py +++ b/skimage/exposure/unwrap.py @@ -33,6 +33,11 @@ def unwrap(image, wrap_around=False): and Munther A. Gdeisat, "Fast two-dimensional phase-unwrapping algorithm based on sorting by reliability following a noncontinuous path", Journal Applied Optics, Vol. 41, No. 35, pp. 7437, 2002 + .. [2] Abdul-Rahman, H., Gdeisat, M., Burton, D., & Lalor, M., "Fast + three-dimensional phase-unwrapping algorithm based on sorting by + reliability following a non-continuous path. In W. Osten, + C. Gorecki, & E. L. Novak (Eds.), Optical Metrology (2005) 32--40, + International Society for Optics and Photonics. ''' image = np.require(image, np.float32, ['C']) if image.ndim not in (2, 3):