You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ImageCalculator method run does not accept options. OTH, the deprecated method calculate does.
from ij import IJ
from ij.plugin import ImageCalculator
IJ.run("Blobs (25K)");
imp = IJ.getImage();
# this doesn't work
ImageCalculator().run("Subtract create", imp, imp)
# these work
ImageCalculator().run("Subtract", imp, imp) # without options
ImageCalculator().calculate("Subtract create", imp, imp) # deprecated method
The text was updated successfully, but these errors were encountered:
ImageCalculator
methodrun
does not accept options. OTH, the deprecated methodcalculate
does.The text was updated successfully, but these errors were encountered: