From 916690a6747ccbaee5fc8f5246e63ea2d3cc86d9 Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Fri, 18 Feb 2011 12:17:26 +0000 Subject: [PATCH] temporily excluded cv::Algorithm --- modules/core/include/opencv2/core/core.hpp | 3 ++- modules/core/include/opencv2/core/operations.hpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/core/include/opencv2/core/core.hpp b/modules/core/include/opencv2/core/core.hpp index 09d277a48a..57cfcaedf2 100644 --- a/modules/core/include/opencv2/core/core.hpp +++ b/modules/core/include/opencv2/core/core.hpp @@ -4040,7 +4040,7 @@ public: int index; }; - +#if 0 class CV_EXPORTS AlgorithmImpl; /*! @@ -4086,6 +4086,7 @@ protected: Ptr impl; }; +#endif } diff --git a/modules/core/include/opencv2/core/operations.hpp b/modules/core/include/opencv2/core/operations.hpp index 5249fd8cd4..10c94f3b07 100644 --- a/modules/core/include/opencv2/core/operations.hpp +++ b/modules/core/include/opencv2/core/operations.hpp @@ -3550,7 +3550,7 @@ template static inline std::ostream& operator << (std::ostream& ou return out; } - +#if 0 template struct AlgorithmParamType {}; template<> struct AlgorithmParamType { enum { type = CV_PARAM_TYPE_INT }; }; template<> struct AlgorithmParamType { enum { type = CV_PARAM_TYPE_REAL }; }; @@ -3594,6 +3594,7 @@ template void Algorithm::setParamRange(int propId, const _Tp& minV { setParamRange_(propId, AlgorithmParamType<_Tp>::type, &minVal, &maxVal); } +#endif }