我正在尝试使用基于 opencv gpu 的级联分类器。这是我尝试加载级联的快照
gpu::CascadeClassifier_GPU cascade_gpu;
if(!cascade_gpu.load(HAARCASCADE_FRONTALFACE3))
return 0;
当我尝试在 cvRead 文件 /Users/ashok/ivsvn/3rdparty/trunk/opencv-2.4.8/modules 中加载未指定的错误(节点不代表用户对象(未知类型?))时出现以下错误/core/src/persistence.cpp,第 4991 行
这是级联文件的标题。
<?xml version="1.0"?>
<opencv_storage>
<cascade>
<stageType>BOOST</stageType>
<featureType>HAAR</featureType>
<height>20</height>
<width>20</width>
<stageParams>
<boostType>GAB</boostType>
<minHitRate>9.9949997663497925e-01</minHitRate>
<maxFalseAlarm>3.4999999403953552e-01</maxFalseAlarm>
<weightTrimRate>9.4999999999999996e-01</weightTrimRate>
<maxDepth>1</maxDepth>
<maxWeakCount>1000</maxWeakCount></stageParams>
<featureParams>
<maxCatCount>0</maxCatCount>
<featSize>1</featSize>
<mode>ALL</mode></featureParams>
<stageNum>18</stageNum>
<stages> ...
我有一个类似的级联文件,经过培训
与 gpu 负载一起工作的 LBP。关于这个问题的任何线索?