OpenCV and Latent SVM Detector

前端 未结 1 482
感动是毒
感动是毒 2021-01-03 01:07

I was wondering if anyone has managed to use the OpenCV implementation of Latent SVM Detector (http://docs.opencv.org/modules/objdetect/doc/latent_svm.html) successfully. Th

相关标签:
1条回答
  • 2021-01-03 01:38

    The MATLAB implementation of LatSVM by the authors of the paper has a train script called pascal. There is a README with the tarball explaining its usage:

    Using the learning code
    =======================
    
    1. Download and install the 2006-2011 PASCAL VOC devkit and dataset.
       (you should set VOCopts.testset='test' in VOCinit.m)
    2. Modify 'voc_config.m' according to your configuration.
    3. Start matlab.
    4. Run the 'compile' function to compile the helper functions.
       (you may need to edit compile.m to use a different convolution 
        routine depending on your system)
    5. Use the 'pascal' script to train and evaluate a model. 
    
    example:
    >> pascal('bicycle', 3);   % train and evaluate a 6 component bicycle model
    
    The learning code saves a number of intermediate models in a model cache
    directory defined in 'voc_config.m'.
    

    For more information, visit the authors website. The page also contain the paper of this method.

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