* \brief Performs the operator on a per pixel basis. * * All overloaded simpleITK operators are performed on a per-pixel * basis, and implemented with the corresponding image filters. These * operators generally don't work with label images, and the logical * operators don't work with images of real components or vector images. * @{ */
| 42 | * @{ |
| 43 | */ |
| 44 | inline Image |
| 45 | operator+(const Image & img1, const Image & img2) |
| 46 | { |
| 47 | return Add(img1, img2); |
| 48 | } |
| 49 | inline Image |
| 50 | operator+(Image && img1, const Image & img2) |
| 51 | { |
nothing calls this directly
no outgoing calls
no test coverage detected