diff options
| author | Tim Redfern <tim@herge.(none)> | 2013-07-16 15:55:57 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@herge.(none)> | 2013-07-16 15:55:57 +0100 |
| commit | f7fcf8cdea57a043b99d90549407195ea1148042 (patch) | |
| tree | 27e065ede8c8ee75adb88977d12e2928634d3220 /rotord/cvimage.h | |
| parent | fa9ec6ed48b78d17bd367a4838af36530a8a0347 (diff) | |
alpha not yet working
Diffstat (limited to 'rotord/cvimage.h')
| -rw-r--r-- | rotord/cvimage.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rotord/cvimage.h b/rotord/cvimage.h index 6c237b4..7935ded 100644 --- a/rotord/cvimage.h +++ b/rotord/cvimage.h @@ -161,6 +161,8 @@ namespace Rotor { Image & operator+=(const Image &other); Image & operator*=(const Image &other); Image & add_wrap(const Image &other); + Image & alpha_blend(const Image &other); + Image & alpha_merge(const Image &other); Image & operator*=(const float &amount); Image * operator*(const float &amount); Image * operator+(const float &amount); @@ -173,5 +175,6 @@ namespace Rotor { bool ownsRGBdata,ownsAdata,ownsZdata; //better done through auto_ptr? cv::Mat rgb; + cv::Mat alpha; }; } |
