In the Dalal and Triggs paper about HOG, it seems like the multi-scale detection works by scanning through the image pyramid. But I can't find which part of modules/objdetect/src/hog.cpp that do the pyramid scanning/loop. Is my understanding wrong, or I read the wrong source file?
问问题
1822 次
1 回答
1
如果您查看此功能的源代码
void HOGCache::init(const HOGDescriptor* _descriptor,
const Mat& _img, Size _paddingTL, Size _paddingBR,
bool _useCache, Size _cacheStride)
你会看到以下评论
// Initialize 2 lookup tables, pixData & blockData.
// Here is why:
//
// The detection algorithm runs in 4 nested loops (at each pyramid layer):
// loop over the windows within the input image
// loop over the blocks within each window
// loop over the cells within each block
// loop over the pixels in each cell
//
// As each of the loops runs over a 2-dimensional array,
// we could get 8(!) nested loops in total, which is very-very slow.
//
// To speed the things up, we do the following:
// 1. loop over windows is unrolled in the HOGDescriptor::{compute|detect} methods;
// inside we compute the current search window using getWindow() method.
// Yes, it involves some overhead (function call + couple of divisions),
// but it's tiny in fact.
// 2. loop over the blocks is also unrolled. Inside we use pre-computed blockData[j]
// to set up gradient and histogram pointers.
// 3. loops over cells and pixels in each cell are merged
// (since there is no overlap between cells, each pixel in the block is processed once)
// and also unrolled. Inside we use PixData[k] to access the gradient values and
// update the histogram
//
正如评论所解释的,循环展开是为了优化目的,这也许就是为什么通过快速扫描源代码很难找到它们的原因。
于 2013-06-13T04:50:28.300 回答