提交 16dd09cc 编写于 作者: M marina.kolpakova

move scale related parameters to SoftCascade constructor

上级 017d970b
......@@ -510,19 +510,18 @@ public:
};
//! An empty cascade will be created.
SoftCascade();
//! Param minScale is a minimum scale relative to the original size of the image on which cascade will be applyed.
//! Param minScale is a maximum scale relative to the original size of the image on which cascade will be applyed.
//! Param scales is a number of scales from minScale to maxScale.
SoftCascade( const float minScale = 0.4f, const float maxScale = 5.f, const int scales = 55);
//! Cascade will be created for scales from minScale to maxScale.
//! Param fs is a serialized sacsade.
//! Param minScale is a minimum scale relative to the original size of the image on which cascade will be applyed.
//! Param minScale is a maximum scale relative to the original size of the image on which cascade will be applyed.
SoftCascade( const cv::FileStorage& fs, const float minScale = 0.4f, const float maxScale = 5.f);
SoftCascade( const cv::FileStorage& fs);
//! cascade will be loaded. The previous cascade will be destroyed.
//! Param fs is a serialized sacsade.
//! Param minScale is a minimum scale relative to the original size of the image on which cascade will be applyed.
//! Param minScale is a maximum scale relative to the original size of the image on which cascade will be applyed.
bool read( const cv::FileStorage& fs, const float minScale = 0.4f, const float maxScale = 5.f);
bool read( const cv::FileStorage& fs);
virtual ~SoftCascade();
......@@ -545,6 +544,10 @@ protected:
private:
struct Filds;
Filds* filds;
float minScale;
float maxScale;
int scales;
};
class CV_EXPORTS IntegralChannels
......
......@@ -497,18 +497,19 @@ struct cv::SoftCascade::Filds
}
};
cv::SoftCascade::SoftCascade() : filds(0) {}
cv::SoftCascade::SoftCascade(const float mins, const float maxs, const int nsc)
: filds(0), minScale(mins), maxScale(maxs), scales(nsc) {}
cv::SoftCascade::SoftCascade(const cv::FileStorage& fs, const float minScale, const float maxScale) : filds(0)
cv::SoftCascade::SoftCascade(const cv::FileStorage& fs) : filds(0)
{
read(fs, minScale, maxScale);
read(fs);
}
cv::SoftCascade::~SoftCascade()
{
delete filds;
}
bool cv::SoftCascade::read( const cv::FileStorage& fs, const float minScale, const float maxScale)
bool cv::SoftCascade::read( const cv::FileStorage& fs)
{
if (!fs.isOpened()) return false;
......
......@@ -92,4 +92,5 @@ TEST(SoftCascade, detect)
total++;
}
std::cout << "detected: " << (int)objects.size() << std::endl;
ASSERT_EQ((int)objects.size(), 1501);
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册