mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 19:36:26 +02:00
8 lines
214 B
C++
8 lines
214 B
C++
#ifndef SHEET6_FUSION_H
|
|
#define SHEET6_FUSION_H
|
|
|
|
cv::Mat mean_fusion_generic(const std::vector<cv::Mat> feature_maps);
|
|
cv::Mat max_fusion_generic(const std::vector<cv::Mat> feature_maps);
|
|
|
|
#endif //SHEET6_FUSION_H
|