Add LineProfile plugin.

This commit is contained in:
Tony S Yu
2012-07-20 17:52:01 -05:00
parent 6b591e27a0
commit afd33afc5e
2 changed files with 249 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from skimage import data
from skimage.viewer import ImageViewer
from skimage.viewer.plugins.lineprofile import LineProfile
image = data.camera()
viewer = ImageViewer(image)
p = LineProfile(viewer)
p.show()
viewer.show()