removed obsolete headers from opencv.hpp, fixed 2 gcc warnings and bug in SVBackSubst().
authorVadim Pisarevsky <no@email>
Mon, 29 Nov 2010 15:31:25 +0000 (15:31 +0000)
committerVadim Pisarevsky <no@email>
Mon, 29 Nov 2010 15:31:25 +0000 (15:31 +0000)
include/opencv2/opencv.hpp
modules/core/include/opencv2/core/mat.hpp
samples/cpp/camshiftdemo.cpp
samples/cpp/lkdemo.cpp

index 3c2f414..4d1c2af 100644 (file)
 
 #include "opencv2/core/core_c.h"
 #include "opencv2/core/core.hpp"
-#include "opencv2/core/wimage.hpp"
 #include "opencv2/flann/flann.hpp"
 #include "opencv2/imgproc/imgproc_c.h"
 #include "opencv2/imgproc/imgproc.hpp"
 #include "opencv2/video/tracking.hpp"
-#include "opencv2/video/blobtrack.hpp"
 #include "opencv2/video/background_segm.hpp"
 #include "opencv2/features2d/features2d.hpp"
 #include "opencv2/objdetect/objdetect.hpp"
index 80febfe..367a61b 100644 (file)
@@ -757,7 +757,7 @@ SVD::backSubst( const Matx<_Tp, nm, 1>& w, const Matx<_Tp, m, nm>& u,
                 Matx<_Tp, n, nb>& dst )
 {
     assert( nm == MIN(m, n));
-    Mat _u(u, false), _w(w, false), _vt(vt, false), _rhs(_rhs, false), _dst(dst, false);
+    Mat _u(u, false), _w(w, false), _vt(vt, false), _rhs(rhs, false), _dst(dst, false);
     SVD::backSubst(_w, _u, _vt, _rhs, _dst);
     CV_Assert(_dst.data == (uchar*)&dst.val[0]);
 }
index 02d741d..dc32180 100644 (file)
@@ -50,7 +50,6 @@ int main( int argc, char** argv )
     VideoCapture cap;
     Rect trackWindow;
     RotatedRect trackBox;
-    CvConnectedComp trackComp;
     int hsize = 16;
     float hranges[] = {0,180};
     const float* phranges = hranges;
index a482656..4030a2a 100644 (file)
@@ -106,7 +106,7 @@ int main( int argc, char** argv )
             points[1].resize(k);
         }
 
-        if( addRemovePt && points[1].size() < MAX_COUNT )
+        if( addRemovePt && points[1].size() < (size_t)MAX_COUNT )
         {
             vector<Point2f> tmp;
             tmp.push_back(pt);