⇤ ← Revision 1 as of 2009-03-23 19:36:04
Size: 44
Comment:
|
Size: 414
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Describe EMAN2/Tutorials/iter_pixels here. | = Iterating through the pixels in the EMData object = In your Python script you can use commands like this to iterate through the pixels in an EMData object {{{#!python a = test_image() for k in a.get_zsize(): for j in a.get_ysize(): for i in a.get_xsize(): pixel_value = a.get(i,j,k) # get the pixel value a.set(i,j,k,pixel_value*3) # set the pixel value }}} |
Iterating through the pixels in the EMData object
In your Python script you can use commands like this to iterate through the pixels in an EMData object