Files
M Clark 06f73d7611 labelplugin, images with multiple channels
This change lets label tool work with images that have multiple channels. Before this change we would a value error.

Test:
```
import skimage
from skimage.viewer import plugins
from skimage import data, viewer, transform, color
imdata = skimage.data.astronaut()
viewer = skimage.viewer.ImageViewer(imdata)
viewer+=skimage.viewer.plugins.LabelPainter()
viewer.show()
```

Previous error:
```
...skimage/viewer/canvastools/painttool.py in at(self, row, col)
    188 
    189     def at(self, row, col):
--> 190         h, w = self.array_shape
    191         r = self.radius
    192         xmin = max(0, col - r)

ValueError: too many values to unpack (expected 2)
```
2016-08-15 14:33:39 +08:00
..
2016-02-08 13:38:14 +01:00
2015-12-11 10:49:11 -06:00
2016-01-30 15:56:19 -06:00
2015-06-20 06:51:39 -05:00
2015-05-04 12:12:18 +02:00