福格
用于C ++的Felzenszwalb HOG(FHOG)特征提取器。
FHOG广泛用于对象跟踪和对象检测。 @joaofaro和他的KCF跟踪器一起提供C ++实现。 此实现使用OpenCV 1数据结构。 此外,功能图内存不会自动释放。
该存储库使用OpenCV3重写了C ++中的FHOG代码。
要求
OpenCV 3+(OpenCV2应该可用,但未经测试)
用法
# include " fhog.h "
...
FHOG fhogDescripter;
// This can be called before your caculation.
// If this function is called before actual calculation,
// many internel Mats will be pre-allocated.
2021-11-26 11:21:15
19KB
C++
1