How can I incorporate extractHOGFeatures with trainCascadeObjectDetector?
조회 수: 1 (최근 30일)
이전 댓글 표시
I've managed to used trainCascadeObjectDetector to detect my object. I am planning to incorporate extractHOGFeatures together with trainCascadeObjectDetector to improve my detection accuracy. May I know does this help to improve the detection? If so, how do I do it?
댓글 수: 0
채택된 답변
Dima Lisin
2015년 12월 10일
Hi Leonard,
You cannot use extractHOGFeatures together with trainCascadeObjectDetector. However, you can specify the feature type for trainCascadeObjectDetector to use, and one of the feature types it supports is HOG.
I cannot tell you whether using HOG will improve your accuracy. That mainly depends on the type of objects you are trying to detect. What I can tell you, is that training with HOG features is much faster and takes much less memory.
댓글 수: 2
Dima Lisin
2015년 12월 10일
HOG is not necessarily better than Haar. For faces, Haar seems to do better, for detecting people - HOG seems to do better. What is better for wheelchairs is anyone's guess. :(
As I said in the other question, try splitting up your images into sub-categories like "front view", "side view", "back view", and try training separate detectors for each one.
By the way, 600 positive samples is actually not that many. You may need more.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Detection에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!