Commit fe7842e8 authored by Alexander Alekhin's avatar Alexander Alekhin

drop unused code

parent a22b9815
...@@ -23,7 +23,6 @@ protected: ...@@ -23,7 +23,6 @@ protected:
std::vector<Mat> layers; std::vector<Mat> layers;
Octave(std::vector<Mat> layers); Octave(std::vector<Mat> layers);
virtual ~Octave(); virtual ~Octave();
std::vector<Mat> getLayers();
Mat getLayerAt(int i); Mat getLayerAt(int i);
}; };
...@@ -278,14 +277,6 @@ void Pyramid::Params::clear() ...@@ -278,14 +277,6 @@ void Pyramid::Params::clear()
*/ */
Pyramid::Octave::Octave(std::vector<Mat> _layers) : layers(_layers) {} Pyramid::Octave::Octave(std::vector<Mat> _layers) : layers(_layers) {}
/**
* Return layers of the Octave
*/
std::vector<Mat> Pyramid::Octave::getLayers()
{
return layers;
}
/** /**
* Return the Octave's layer at index i * Return the Octave's layer at index i
*/ */
......
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