001/******************************************************************************* 002 * This software is provided as a supplement to the authors' textbooks on digital 003 * image processing published by Springer-Verlag in various languages and editions. 004 * Permission to use and distribute this software is granted under the BSD 2-Clause 005 * "Simplified" License (see http://opensource.org/licenses/BSD-2-Clause). 006 * Copyright (c) 2006-2023 Wilhelm Burger, Mark J. Burge. All rights reserved. 007 * Visit https://imagingbook.com for additional details. 008 ******************************************************************************/ 009package ImageJ_Demos; 010 011import ij.IJ; 012import ij.ImagePlus; 013import ij.plugin.PlugIn; 014import ij.process.ImageProcessor; 015import imagingbook.core.jdoc.JavaDocHelp; 016 017/** 018 * This plugin does the same as {@link My_Inverter_A} but is based on the {@link ij.plugin.PlugIn} instead of the 019 * {@link ij.plugin.filter.PlugInFilter} interface. Its advantage is that only one method (run()) must be implemented. 020 * Disadvantage is that testing if an image is currently open and is of the proper type must be explicitly coded. 021 * 022 * @author WB 023 */ 024public class My_Inverter_B implements PlugIn, JavaDocHelp { 025 026 public void run(String args) { 027 ImagePlus im = IJ.getImage(); // WindowManager.getCurrentImage(); 028 029 if (im.getType() != ImagePlus.GRAY8) { 030 IJ.error("8-bit grayscale image required"); 031 return; 032 } 033 034 ImageProcessor ip = im.getProcessor(); 035 int M = ip.getWidth(); 036 int N = ip.getHeight(); 037 038 // iterate over all image coordinates 039 for (int u = 0; u < M; u++) { 040 for (int v = 0; v < N; v++) { 041 int p = ip.get(u, v); 042 ip.set(u, v, 255 - p); 043 } 044 } 045 046 im.updateAndDraw(); // redraw the modified image 047 } 048 049}