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

This commit is contained in:
Uwe Kindler 2013-04-24 07:33:22 +02:00
parent 416fb50594
commit ca42a50de6

View File

@ -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);