Login  Register

Re: boolean operator plugin

Posted by BenTupper on Apr 08, 2009; 1:40pm
URL: http://imagej.273.s1.nabble.com/boolean-operator-plugin-tp3693045p3693046.html

On Apr 8, 2009, at 9:29 AM, Donny George wrote:

> hello
>
> i have been extensively searching for a plugin with boolean  
> operators eg xor
> so that  can automatically invert my images and i have not been  
> successful
> to find one. could any of you please be kind enough to show me a  
> pluging for
> this purpose or are there none ??
>
>

Hi,

Why don't you use the simple built-in command...

IJ.run("Invert");

or the invert method to the ImageProcessor class...

ImageProcessor ip = imp.getProcessor();
ip.invert();


Cheers,
Ben