Choosing/Normalizing HoG parameters for object detection?

廉价感情. 提交于 2019-11-30 23:47:36

As you say, HOG basically uses a parameter that establishes the cell size in pixels. So if the image size changes, then the number of cells is different and then the descriptor is different in size.

The main approach is to use HOG is to use windows with the same size in pixels (the same size during training and also during testing). So extracted window should be the same size of trainingsample.

In that reference, one user says:

HOG is not scale invariant. Getting the same length feature vector for each image does not guarantee the scale invariance.

So you should use the same window size...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!