Hello,
I’m trying to run a macro for a batch of images, the macro I’m using is:
//run("Brightness/Contrast...");
setMinAndMax(156, 275);
run("Close");
setAutoThreshold("Default");
//run("Threshold...");
setThreshold(0, 150);
run("Close");
//setThreshold(0, 150);
setOption("BlackBackground", false);
run("Make Binary", "thresholded remaining black");
However when I press process I get the pop up error saying: “There are no images open”. I was under the impression that since you specify the input/output folders, the program should open all the images itself? I’m really not sure where is the problem.