Commit ca42a50d authored by Uwe Kindler's avatar Uwe Kindler

Changed visibility of the virtual functions in OnePassStabilizer and…

Changed visibility of the virtual functions in OnePassStabilizer and TwoPassStabilizer that are derived from StabilizerBase from private to protected to enable stabilizer implementations that are derived from OnePassStabilizer and TwoPassStabilier to properly overwrite these functions
parent 416fb505
......@@ -144,7 +144,7 @@ public:
virtual void reset();
virtual Mat nextFrame() { return nextStabilizedFrame(); }
private:
protected:
virtual void setUp(const Mat &firstFrame);
virtual Mat estimateMotion();
virtual Mat estimateStabilizationMotion();
......@@ -170,7 +170,7 @@ public:
virtual void reset();
virtual Mat nextFrame();
private:
protected:
void runPrePassIfNecessary();
virtual void setUp(const Mat &firstFrame);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment