temporily excluded cv::Algorithm

This commit is contained in:
Vadim Pisarevsky 2011-02-18 12:17:26 +00:00
parent de913bd63f
commit 916690a674
2 changed files with 4 additions and 2 deletions

View File

@ -4040,7 +4040,7 @@ public:
int index; int index;
}; };
#if 0
class CV_EXPORTS AlgorithmImpl; class CV_EXPORTS AlgorithmImpl;
/*! /*!
@ -4086,6 +4086,7 @@ protected:
Ptr<AlgorithmImpl> impl; Ptr<AlgorithmImpl> impl;
}; };
#endif
} }

View File

@ -3550,7 +3550,7 @@ template<typename _Tp> static inline std::ostream& operator << (std::ostream& ou
return out; return out;
} }
#if 0
template<typename _Tp> struct AlgorithmParamType {}; template<typename _Tp> struct AlgorithmParamType {};
template<> struct AlgorithmParamType<int> { enum { type = CV_PARAM_TYPE_INT }; }; template<> struct AlgorithmParamType<int> { enum { type = CV_PARAM_TYPE_INT }; };
template<> struct AlgorithmParamType<double> { enum { type = CV_PARAM_TYPE_REAL }; }; template<> struct AlgorithmParamType<double> { enum { type = CV_PARAM_TYPE_REAL }; };
@ -3594,6 +3594,7 @@ template<typename _Tp> void Algorithm::setParamRange(int propId, const _Tp& minV
{ {
setParamRange_(propId, AlgorithmParamType<_Tp>::type, &minVal, &maxVal); setParamRange_(propId, AlgorithmParamType<_Tp>::type, &minVal, &maxVal);
} }
#endif
} }