1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 19:36:26 +02:00

[CCV] Added ability to fetch number of layers

Signed-off-by: Jim Martens <github@2martens>
This commit is contained in:
2017-05-02 15:17:42 +02:00
parent 47883edea3
commit 5d78f00735
2 changed files with 6 additions and 0 deletions

View File

@ -19,3 +19,8 @@ cv::Mat gauss_pyramid::get(int layer)
{
return _layers.at((unsigned long) layer);
}
unsigned long gauss_pyramid::get_number_of_layers()
{
return _layers.size();
}