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

[CCV] Changed signature of get feature map method

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2017-05-30 20:51:45 +02:00
parent feae7ddeaf
commit 781edeb133
2 changed files with 3 additions and 3 deletions

View File

@ -63,6 +63,6 @@ cv::Mat oriented_pyramid::get_conspicuity_map() {
return _C;
}
cv::Mat oriented_pyramid::get_feature_map(int orientation) {
return _feature_maps.at((unsigned long) orientation);
cv::Mat oriented_pyramid::get_feature_map(unsigned long orientation) {
return _feature_maps.at(orientation).clone();
}