Boring changes - nonfree.

This commit is contained in:
Roman Donchenko
2013-08-13 17:36:38 +04:00
parent 345bc633cc
commit de6a934f66
3 changed files with 11 additions and 11 deletions

View File

@@ -210,7 +210,7 @@ public:
minKeyPointMatchesRatio(_minKeyPointMatchesRatio),
minAngleInliersRatio(_minAngleInliersRatio)
{
CV_Assert(!featureDetector.empty());
CV_Assert(featureDetector);
}
protected:
@@ -323,8 +323,8 @@ public:
normType(_normType),
minDescInliersRatio(_minDescInliersRatio)
{
CV_Assert(!featureDetector.empty());
CV_Assert(!descriptorExtractor.empty());
CV_Assert(featureDetector);
CV_Assert(descriptorExtractor);
}
protected:
@@ -410,7 +410,7 @@ public:
minKeyPointMatchesRatio(_minKeyPointMatchesRatio),
minScaleInliersRatio(_minScaleInliersRatio)
{
CV_Assert(!featureDetector.empty());
CV_Assert(featureDetector);
}
protected:
@@ -530,8 +530,8 @@ public:
normType(_normType),
minDescInliersRatio(_minDescInliersRatio)
{
CV_Assert(!featureDetector.empty());
CV_Assert(!descriptorExtractor.empty());
CV_Assert(featureDetector);
CV_Assert(descriptorExtractor);
}
protected: