|
|
View previous topic
::
View next topic
|
Author |
Message |
ramon fincken Site's programmer
 Get a free globally recognized avatar It's free!
Joined: 03 Aug 2007 Posts: 414 Location: A'dam/Diemen, The Netherlands
|
Posted: Mon Mar 05, 2012 11:57 am Post subject: [imagej] Commandline invert image |
|
|
For instance from fluorescent images to "normal" images. (FiSH to "normal" images):
works like this: newpixelvalue = 255 - pixelvalue
This works for single layer images as well as RGB images.
Code: | /**
* Inverts image, single layer
* @author Ramon Fincken, http://www.ramonfincken.com/permalink/topic243.html
* @param fullpath
* @param write_to_png
*/
public void invert(String fullpath, String write_to_png)
{
ImagePlus img = IJ.openImage(fullpath);
ImageProcessor IP = img.getProcessor();
IP.invert();
img.setProcessor(IP);
IJ.save(img, write_to_png);
} |
|
|
Back to top |
|
 |
Google adsense Advertisement
|
Posted: Mon Mar 05, 2012 11:57 am Post subject: [imagej] Commandline invert image |
|
|
Advertisement
|
|
Back to top |
|
 |
GravityForms Advertisement
|
Posted: Mon Mar 05, 2012 11:57 am Post subject: [imagej] Commandline invert image |
|
|
Advertisement
 |
|
Back to top |
|
 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|