next up previous contents index
Next: Reconstructors Usage Up: Miscellaneous Previous: Reading/Writing Images in Python   Contents   Index


Processors Usage

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")



2013-06-11