I'd like to do some image processing in FIJI / ImageJ but not sure how to go about it. I have a first image, call it "imageA" and would like to perform several operations on it. I know you can go to Process->Math and have some options for operations (add subtract multlipy etc) and there is a tool for writing a macro so that you can combine a few operations into one step, but I'm not sure how to approach it for adding in a second image which I'd like to include in the operation.
I'd like to take imageA and multiply it by a second image of the same size, imageB, together with a few other steps which are outlined in the function below:
output image = sqrt((constant*constant) + (constant2*constant2) + (imageB*imageB))
Image A * Output Image.
The constants are pretty straightforward inputs that I can simply add, but I'm not sure how to make it so imageB is also included in the function to produce the final output that I will then apply to imageA.