I've found this post which uses the IJ.runMacro() method, but I'm confused as to what the "Clown (14K)" refers to, and I want to use a macro that I made myself, not one downloaded from imageJ's website.
My macro is just this for now:
run("Non-local Means Denoising", "sigma=5 smoothing_factor=1");
and that works in ImageJ when I use the batch processor. (Non-Local Means Denoising is an ImageJ Plugin)
My two questions are these:
How do I call a macro that I made using the IJ.runMacro method (or alternative)?
How do I specify what image the runMacro method will affect?
Thank you for your time.
I finally found the answer to my question here
The line of code that ended up solving it was:
So the entire Test class looks like this now: