I'm trying to write a code in Image J that will:
Open all images in separate windows that contains "488" 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"); Adjust the brightness and contrast with defined values for Min and Max (same values for each image). I know that the code for that is:
//run("Brightness/Contrast..."); setMinAndMax(value min, value max); run("Apply LUT");
Save each image in the same, original folder , in Tiff and with the same name but finishing with "processed".
I have no experience with Java and am very bad 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!