Makefile: fix detecting the compiler
[experiments/opencv_trail_effect.git] / Trail.hpp
index e519c94..ecf486a 100644 (file)
--- a/Trail.hpp
+++ b/Trail.hpp
@@ -10,7 +10,7 @@ class Trail {
 private:
        virtual void iterate(cv::Mat& frame, void (*action)(cv::Mat&, Frame *, int, int)) = 0;
 
-       cv::Mat *background = NULL;
+       cv::Mat *background;
        bool redraw_current_frame;
        bool persistent;
 
@@ -58,6 +58,7 @@ protected:
 public:
        Trail(int trail_length, cv::Size frame_size)
        {
+               background = NULL;
                redraw_current_frame = false;
                drawStrategy = frameCopy;
                persistent = false;