MCPcopy Create free account
hub / github.com/SimpleITK/SimpleITK / operator+

Function operator+

Code/BasicFilters/include/sitkImageOperators.h:44–48  ·  view source on GitHub ↗

* \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. * @{ */

Source from the content-addressed store, hash-verified

42 * @{
43 */
44inline Image
45operator+(const Image & img1, const Image & img2)
46{
47 return Add(img1, img2);
48}
49inline Image
50operator+(Image && img1, const Image & img2)
51{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected