I want to create a macro that will repeat the same process (overlay) several images from two different sets of images. One set is called Fluorescent1...95 (I have 95 images, for example), the other is DIC1...95.
What I need to know is how can I write a macro that tells FIJI (or ImageJ) to overlay Fluorescent1 with DIC1, Fluorescent2 with DIC2, so forth so forth.
Right now, the code is like this:
selectWindow("Fluorescent1");
run("Add Image...", "image=[DIC1.dv] x=0 y=0 opacity=20");
What do I need to change in this code for it to do what I want?
Thank you for your help!