Ask Your Question

Harold's profile - activity

2015-10-23 06:11:03 -0600 commented question Opencv cascade classifier got different result with different computers

I'm 100% sure that my code and test images are THE SAME... I purposely detect the size bigger than 110x110 since I'm not going to detect the face. I detect something else which I know the size and train the classifier myself. Though I still named the detection as faces...My bad

2015-10-22 14:32:39 -0600 received badge  Student (source)
2015-10-22 10:43:03 -0600 asked a question Opencv cascade classifier got different result with different computers

I've played with opencv3.0's cascade classifier recently, and came a long way to train a classifier that saved as cascade.xml. The classifier works well at my working place. But when I conducted the program at home using my laptop, the test result perform badly... Why would be that? My code and setting are the same. The working environment are also the same ( win7 x64, visualstudio2013 community with update5).

The key detection code are below: cascade.detectMultiScale(smallImg, faces, 1.1, 11, 0, Size(110, 110));

Setting in my cascade.xml: stageType: BOOST featureType: HAAR size: 20x20 boostType: GAB

Could anybody figure out what happened to the different result with the "same code", the smae "cascade.xml" and same "test images"?