Skip to content

Instantly share code, notes, and snippets.

@miyanari
Created September 3, 2013 15:17
Show Gist options
  • Select an option

  • Save miyanari/6425296 to your computer and use it in GitHub Desktop.

Select an option

Save miyanari/6425296 to your computer and use it in GitHub Desktop.
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