remove unused parameter from softcascade::Octave constructor

This commit is contained in:
marina.kolpakova
2013-03-02 13:06:29 +04:00
parent d539dae6d0
commit ac471fadd6
4 changed files with 7 additions and 8 deletions

View File

@@ -221,7 +221,7 @@ TEST(DISABLED_SoftCascade, training)
cvRound(64 * octave), cvRound(128 * octave));
cv::Ptr<ChannelFeatureBuilder> builder = ChannelFeatureBuilder::create("HOG6MagLuv");
cv::Ptr<Octave> boost = Octave::create(boundingBox, npositives, nnegatives, *it, shrinkage, nfeatures, builder);
cv::Ptr<Octave> boost = Octave::create(boundingBox, npositives, nnegatives, *it, shrinkage, builder);
std::string path = cvtest::TS::ptr()->get_data_path() + "softcascade/sample_training_set";
ScaledDataset dataset(path, *it);