Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
fa1d85bc
Commit
fa1d85bc
authored
Nov 29, 2010
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed obsolete headers from opencv.hpp, fixed 2 gcc warnings and bug in SVBackSubst().
parent
cfeca141
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
5 deletions
+2
-5
opencv.hpp
include/opencv2/opencv.hpp
+0
-2
mat.hpp
modules/core/include/opencv2/core/mat.hpp
+1
-1
camshiftdemo.cpp
samples/cpp/camshiftdemo.cpp
+0
-1
lkdemo.cpp
samples/cpp/lkdemo.cpp
+1
-1
No files found.
include/opencv2/opencv.hpp
View file @
fa1d85bc
...
...
@@ -45,12 +45,10 @@
#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"
...
...
modules/core/include/opencv2/core/mat.hpp
View file @
fa1d85bc
...
...
@@ -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
]);
}
...
...
samples/cpp/camshiftdemo.cpp
View file @
fa1d85bc
...
...
@@ -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
;
...
...
samples/cpp/lkdemo.cpp
View file @
fa1d85bc
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment