Size: 44
Comment:
|
← Revision 7 as of 2015-08-14 22:11:14 ⇥
Size: 596
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 xrange(a["nz"]): for j in xrange(a["ny"]): for i in xrange(a["nx"]): pixel_value = a[i,j,k] # get the pixel value a[i,j,k]=pixel_value*3 # set the pixel value }}} Note that you can do any of: {{{#!python a[x] a[x,y] a[x,y,z] a[attr_name] }}} The fourth form allows getting and setting attributes equivalent to set_attr() and get_attr(). |
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
Note that you can do any of:
The fourth form allows getting and setting attributes equivalent to set_attr() and get_attr().