Cat Detection Using Haar Training

前端 未结 1 1820
故里飘歌
故里飘歌 2021-02-10 06:00

I would like to detect deformable objects (a CAT in my case) , using HAAR- cascades . I ran the test on 2000 positives and 3000 negative images upto 20 stages . I don\'t see any

1条回答
  •  爱一瞬间的悲伤
    2021-02-10 06:50

    First off, you haven't listed what you are using to train your haar classifiers. If you are not using opencv_traincascades this is the place to start.

    Secondly detecting a cat is a very difficult job, there are a lot of undefiend edges, rotational and spatial variances. using this train of thought, answer these questions to yourself:

    • What does your positive dataset look like?
    • Is this similar to what you are showing through the input feed
    • What is the false alarm rate of your classifier when you have trained it?
    • What are you including in your background set (more images that look like cats that arn't cats are better etc)

    I would suggest posting your output into the question from the classifying stages in order for us to get a better view of what is happening. Take a look at these links for more help.

    Maybe try with pens, or logos first, follow the openCV tutorials and understand the basics? (sorry if I have assumed you don't know the basics if you do)

    G./

    0 讨论(0)
提交回复
热议问题