Created
September 3, 2013 15:17
-
-
Save miyanari/6425296 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from imagescience.image import Image | |
| from imagescience.feature import Laplacian | |
| imp = IJ.getImage() | |
| #fjimp = FJ_Laplacian() | |
| img = Image.wrap(imp) | |
| lap =Laplacian() | |
| lapimg = lap.run(img, 2.0) | |
| lapimp = lapimg.imageplus() | |
| lapimp.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment