mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 11:26:25 +02:00
[CCV] Changed signature of get feature map method
Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
@ -50,7 +50,7 @@ public:
|
|||||||
* @param orientation the nth orientation
|
* @param orientation the nth orientation
|
||||||
* @return the feature map
|
* @return the feature map
|
||||||
*/
|
*/
|
||||||
cv::Mat get_feature_map(int orientation);
|
cv::Mat get_feature_map(unsigned long orientation);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -63,6 +63,6 @@ cv::Mat oriented_pyramid::get_conspicuity_map() {
|
|||||||
return _C;
|
return _C;
|
||||||
}
|
}
|
||||||
|
|
||||||
cv::Mat oriented_pyramid::get_feature_map(int orientation) {
|
cv::Mat oriented_pyramid::get_feature_map(unsigned long orientation) {
|
||||||
return _feature_maps.at((unsigned long) orientation);
|
return _feature_maps.at(orientation).clone();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user