I'm trying to write a code in Image J that will:
- Open all images in separate windows that end in " - GFP.vsi" within a folder
- Use look up tables to convert images to green and RGB color From ImageJ, the commands are: run("Green"); and run("RGB Color");
- Save each image in the same, original folder with the same name and as a .tif Would be ok if images overwrite original, but would also be ok if they had a new name. From ImageJ, to save as .tif file: saveAs("Tiff", "Filepath");
I have no experience with Java and just a little experience with coding. I tried to piece something together using code I found on stackoverflow and on the ImageJ website, but kept getting error codes. Any help is much appreciated!