Created
January 23, 2012 13:15
-
-
Save miura/1663061 to your computer and use it in GitHub Desktop.
Example of getting local maxima
This file contains 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
importClass(Packages.ij3d.image3d.IntImage3D); | |
imp=IJ.getImage(); | |
ima=new IntImage3D(imp.getStack()); | |
r=3; | |
ima2=ima.createLocalMaximaImage(r,r,r, true); | |
plus=new ImagePlus("localmaxima",ima2.getStack()); | |
plus.show(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment