所以,我創建了自己的HOG特徵提取和一個簡單的滑動窗口算法,其僞代碼如下所示:如何在自定義檢測算法中使用級聯分類器?
for(int i = 0; i < img.rows; i++) {
for(int j = 0; j < img.cols; j++) {
extract image ROI from the current position
calculate features for the ROI
feed the features into svm.predict() function, to determine whether it's human or not
}
}
但是因爲它的速度很慢(尤其是當你有不同的尺度),我我決定在我的正面和負面樣本上使用openv_traincascade命令訓練一些級聯分類器。
opencv_traincascade爲我提供了cascade.xml,params.xml,和一些stages.xml文件
我的問題是我怎麼利用我的檢測迴路這種訓練的級聯分類?
編輯:否,not detectMultiScale。我使用級聯分類器的原因只是爲了加速檢測非對象,我仍然需要使用自己的算法來計算可能的ROI分數。對不起