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:
@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user