summaryrefslogtreecommitdiff
path: root/rotord/cvimage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rotord/cvimage.cpp')
-rw-r--r--rotord/cvimage.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/rotord/cvimage.cpp b/rotord/cvimage.cpp
index 8cb1f9c..a623bfd 100644
--- a/rotord/cvimage.cpp
+++ b/rotord/cvimage.cpp
@@ -33,6 +33,7 @@ namespace Rotor {
}
return *this;
}
+ //THESE CAN BE OPTIMISED - LOOK INTO USING OPENCV HERE
Image & Image::alpha_blend(const Image &other) {
if (other.w!=w||other.h!=h) {
cerr<<"Rotor: cannot blend images with different sizes! (wanted "<<w<<"x"<<h<<", got "<<other.w<<"x"<<other.h<<")"<<endl;