From 71d8769314d926462d94dbde1ae139740f65319d Mon Sep 17 00:00:00 2001 From: Maria Dimashova Date: Fri, 6 Apr 2012 12:30:09 +0000 Subject: [PATCH] removed EM from python and java bindings --- modules/ml/include/opencv2/ml/ml.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ml/include/opencv2/ml/ml.hpp b/modules/ml/include/opencv2/ml/ml.hpp index 3afe46aff..767d82140 100644 --- a/modules/ml/include/opencv2/ml/ml.hpp +++ b/modules/ml/include/opencv2/ml/ml.hpp @@ -555,7 +555,7 @@ protected: \****************************************************************************************/ namespace cv { -class CV_EXPORTS_W EM : public Algorithm +class CV_EXPORTS EM : public Algorithm { public: // Type of covariation matrices @@ -564,7 +564,7 @@ public: // The initial step enum {START_E_STEP=1, START_M_STEP=2, START_AUTO_STEP=0}; - class CV_EXPORTS_W Params + class CV_EXPORTS Params { public: Params(int nclusters=10, int covMatType=EM::COV_MAT_DIAGONAL, int startStep=EM::START_AUTO_STEP,