import edu.stanford.rsl.conrad.utils.ImageUtil; import ij.IJ; import ij.ImagePlus; import ij.plugin.PlugIn; public class Normalize_Image_CutOff implements PlugIn { public Normalize_Image_CutOff(){ } @Override public void run(String arg) { ImagePlus image = IJ.getImage(); ImageUtil.normalizeImagePlusCutOff(image, 2); } } /* * Copyright (C) 2010-2014 - Andreas Maier * CONRAD is developed as an Open Source project under the GNU General Public License (GPL). */