Size: 1334
Comment:
|
← Revision 13 as of 2009-03-06 17:36:06 ⇥
Size: 1452
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
The following example shows various ways of adding and multiplying images. The given example uses 3D images but the functionality generalizes for 2D images. | <<TableOfContents>> The following example shows various ways of adding, subtracting, multiplying and dividing images. The given example uses 2D images but the functionality generalizes for 3D images. |
Line 14: | Line 16: |
In [3]: a = test_image(0) | In [3]: A = test_image(0) |
Line 16: | Line 18: |
In [4]: b = test_image(1) | In [4]: B = test_image(1) |
Line 25: | Line 27: |
In [5]: c = a + b # add two images, the result is stored in c | In [5]: C = A + B # add two images, the result is stored in C |
Line 27: | Line 29: |
In [6]: display(c) # observe c | In [6]: display(C) # observe C |
Line 29: | Line 31: |
In [7]: c = a * b # multiply the two images component wise, the result is stored in c | In [7]: C = A * B # multiply the two images component wise, the result is stored in C |
Line 31: | Line 33: |
In [7]: c = a / b # division | In [7]: C = A / B # division |
Line 33: | Line 35: |
In [8]: c = a - b # subtraction | In [8]: C = A - B # subtraction |
Line 36: | Line 38: |
== Add/multiply b to/against a and store it in a == | == Add/multiply B and A, store result in A == |
Line 39: | Line 41: |
In [9]: a.add(b) # Add the pixels of b to the pixels of a - result stored in a | In [9]: A.add(B) # Add the pixels of A to the pixels of B - result stored in A |
Line 41: | Line 43: |
In [10]: a.mult(b) # Multiple the pixels in a by 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 45: | Line 47: |
Subtract b from a and store it in a | == Subtract B from A and store it in A == |
Line 47: | Line 49: |
{{{ In [11]: c = b*-1 # multiply b by negative one |
|
Line 50: | Line 50: |
In [12]: a.add(c) # equivalent to subtracting b from 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 |
Contents
The following example shows various ways of adding, subtracting, multiplying and dividing images. The given example uses 2D images but the functionality generalizes for 3D 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