Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for list sigma input in SLIC
Previously, having a different `sigma` for different dimensions required an array input. This allows the user to use a simple list, which gets converted to an array internally. Importantly, it removes a very unhelpful error: ```python >>> im = np.random.rand(10, 20) >>> from skimage import segmentation as seg Exception AttributeError: "'UmfpackContext' object has no attribute '_symbolic'" in <bound method UmfpackContext.__del__ of <scipy.sparse.linalg.dsolve.umfpack.umfpack.UmfpackContext object at 0x1045ff5d0>> ignored >>> s = seg.slic(im, 2, sigma=[2, 1]) --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-3-689b36a2f0ef> in <module>() ----> 1 s = seg.slic(im, 2, sigma=[2, 1]) /Users/nuneziglesiasj/venv/skimdev2/lib/python2.7/site-packages/scikit_image-0.9dev-py2.7-macosx-10.5-x86_64.egg/skimage/segmentation/slic_superpixels.pyc in slic(image, n_segments, compactness, max_iter, sigma, multichannel, convert2lab, ratio) 106 if not isinstance(sigma, coll.Iterable): 107 sigma = np.array([sigma, sigma, sigma]) --> 108 if (sigma > 0).any(): 109 sigma = list(sigma) + [0] 110 image = ndimage.gaussian_filter(image, sigma) AttributeError: 'bool' object has no attribute 'any' ```
- Loading branch information