Example: Using Processors in Python
from EMAN2 import e = EMData() e.read_image("test1.mrc") e.process("math.sqrt") e.process("threshold.binaryrange", {"low" : 5.2, "high" : 10}) e.write_image("output.mrc")