Commit 4c44ccc3 authored by Alexey Spizhevoy's avatar Alexey Spizhevoy

Removed unnecessary code (videostab)

parent dfedaff9
...@@ -167,9 +167,6 @@ public: ...@@ -167,9 +167,6 @@ public:
virtual void reset(); virtual void reset();
virtual Mat nextFrame(); virtual Mat nextFrame();
// available after pre-pass, before it's empty
std::vector<Mat> motions() const;
private: private:
void runPrePassIfNecessary(); void runPrePassIfNecessary();
......
...@@ -317,16 +317,6 @@ Mat TwoPassStabilizer::nextFrame() ...@@ -317,16 +317,6 @@ Mat TwoPassStabilizer::nextFrame()
} }
vector<Mat> TwoPassStabilizer::motions() const
{
if (frameCount_ == 0)
return vector<Mat>();
vector<Mat> res(frameCount_ - 1);
copy(motions_.begin(), motions_.begin() + frameCount_ - 1, res.begin());
return res;
}
void TwoPassStabilizer::runPrePassIfNecessary() void TwoPassStabilizer::runPrePassIfNecessary()
{ {
if (!isPrePassDone_) if (!isPrePassDone_)
......
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