summaryrefslogtreecommitdiff
path: root/rotord/cvimage.h
diff options
context:
space:
mode:
authorTim Redfern <tim@herge.(none)>2013-07-18 11:21:47 +0100
committerTim Redfern <tim@herge.(none)>2013-07-18 11:21:47 +0100
commit0c2b109bcac035e5fd9370b78eecad7cf40793cc (patch)
tree51a7f515df9124ce3f2657260eaee7165d98c7bb /rotord/cvimage.h
parent9cf113df8b50c0c6f5132d3bd8b803db5332d9e6 (diff)
add xor blending
Diffstat (limited to 'rotord/cvimage.h')
-rw-r--r--rotord/cvimage.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/rotord/cvimage.h b/rotord/cvimage.h
index a8a7a09..44cbca8 100644
--- a/rotord/cvimage.h
+++ b/rotord/cvimage.h
@@ -160,6 +160,7 @@ namespace Rotor {
//believe these still work, don't know if these optimisations are better than opencvs..
Image & operator+=(const Image &other);
Image & operator*=(const Image &other);
+ Image & operator^=(const Image &other);
Image & alpha_blend(const Image &other);
Image & alpha_blend_cv(const Image &other);
Image & alpha_merge(const Image &other);