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