Size: 548
Comment:
|
Size: 1406
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
{{{ [someone@localhost]$ e2.py |
The following example shows various ways of adding and multiplying images. The given example uses 3D images but the functionality generalizes for 2D images. = Adding and multiplying images = First I make different two example images that have the same dimensions {{{#!python [someone@localhost] e2.py |
Line 8: | Line 14: |
In [3]: e = EMData() | In [3]: A = test_image(0) |
Line 10: | Line 16: |
In [4]: e.set_size(32,32,32) | In [4]: B = test_image(1) }}} |
Line 12: | Line 19: |
In [5]: f = e.copy() | ''or try a = test_image_3d(2), a = test_image(0) etc - see the [[EMAN2/Galleries/Testimages|test image gallery]].'' |
Line 14: | Line 21: |
In [5]: e.process_inplace('testimage.axes') | |
Line 16: | Line 22: |
or try e.process_inplace('testimage.scurve'),e.process_inplace('testimage.gradient') | == Add/multiply/subtract/divide images and store the result in a new image == |
Line 18: | Line 24: |
In [6]: t = Transform3D(90,30,90) | {{{#!python In [5]: C = A + B # add two images, the result is stored in C |
Line 20: | Line 27: |
In [7]: t.set_posttrans(1,-2,5) | In [6]: display(C) # observe C |
Line 22: | Line 29: |
In [8]: t.set_pretrans(2,10,-20) | In [7]: C = A * B # multiply the two images component wise, the result is stored in C |
Line 24: | Line 31: |
In [9]: e.rotate_translate(t) | In [7]: C = A / B # division |
Line 26: | Line 33: |
In [10]: e.mult(10) | In [8]: C = A - B # subtraction }}} |
Line 28: | Line 36: |
In [11]: g = f + e | == Add/multiply B and A, store result in A == |
Line 30: | Line 38: |
In [12]: display(g) | {{{#!python In [9]: A.add(B) # Add the pixels of A to the pixels of B - result stored in A In [10]: A.mult(B) # Multiple the pixels in a by the pixels of B - result stored in A |
Line 33: | Line 44: |
== Subtract B from A and store it in A == {{{#!python In [11]: C = B*-1 # multiply B by negative one, store it C In [12]: A.add(C) # equivalent to subtracting B from A In [13]: A.add(B*-1) # equivalent to line above }}} |
The following example shows various ways of adding and multiplying images. The given example uses 3D images but the functionality generalizes for 2D images.
Adding and multiplying images
First I make different two example images that have the same dimensions
or try a = test_image_3d(2), a = test_image(0) etc - see the test image gallery.
Add/multiply/subtract/divide images and store the result in a new image
Add/multiply B and A, store result in A