Added float, uint64, and uchar params to Algorithm

Made changes to work in cv::Algorithm with parameters of these types.
Also fixed SimpleBlobDetector -- now it can be created by
cv::Algorithm::create and it can work with cv::Algorithm::set/get.
This commit is contained in:
LeonidBeynenson
2013-02-04 20:25:18 +04:00
parent db9de43fa5
commit b85a098d9c
4 changed files with 425 additions and 22 deletions

View File

@@ -658,6 +658,7 @@ protected:
virtual void findBlobs(const Mat &image, const Mat &binaryImage, vector<Center> &centers) const;
Params params;
AlgorithmInfo* info() const;
};