summaryrefslogtreecommitdiff
path: root/rotord/cvimage.h
diff options
context:
space:
mode:
authorTim Redfern <tim@herge.(none)>2013-07-17 15:38:31 +0100
committerTim Redfern <tim@herge.(none)>2013-07-17 15:38:31 +0100
commit9cf113df8b50c0c6f5132d3bd8b803db5332d9e6 (patch)
treeb7dbdf0aa80b2dc3b45eb031ceb7e04582e2d9e4 /rotord/cvimage.h
parent7e3657d7783b7a6cdb48719d17ec3ac381dd8ae7 (diff)
glitchy blend modes
Diffstat (limited to 'rotord/cvimage.h')
-rw-r--r--rotord/cvimage.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/rotord/cvimage.h b/rotord/cvimage.h
index 0b767d8..a8a7a09 100644
--- a/rotord/cvimage.h
+++ b/rotord/cvimage.h
@@ -160,10 +160,11 @@ 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 & add_wrap(const Image &other);
Image & alpha_blend(const Image &other);
Image & alpha_blend_cv(const Image &other);
Image & alpha_merge(const Image &other);
+ Image & add_wrap(const Image &other);
+ Image & divide_wrap(const Image &other);
Image & operator*=(const float &amount);
Image * operator*(const float &amount);
Image * operator+(const float &amount);