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
75cf8c1b
Commit
75cf8c1b
authored
Jul 16, 2010
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
a few more warnings fixed
parent
758e826d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
spinimages.cpp
modules/contrib/src/spinimages.cpp
+3
-3
acameracalibration.cpp
tests/cv/src/acameracalibration.cpp
+1
-1
achesscorners.cpp
tests/cv/src/achesscorners.cpp
+1
-1
tabruteforcematcher.cpp
tests/cv/src/tabruteforcematcher.cpp
+1
-1
No files found.
modules/contrib/src/spinimages.cpp
View file @
75cf8c1b
...
...
@@ -1053,7 +1053,7 @@ private:
/* filtering by geometric consistency */
for
(
int
i
=
0
;
i
<
matchesSize
;
++
i
)
{
size_
t
consistNum
=
1
;
in
t
consistNum
=
1
;
float
gc
=
float_max
;
for
(
int
j
=
0
;
j
<
matchesSize
;
++
j
)
...
...
@@ -1140,14 +1140,14 @@ private:
}
group_t
allMatchesInds
;
for
(
size_
t
i
=
0
;
i
<
matchesSize
;
++
i
)
for
(
in
t
i
=
0
;
i
<
matchesSize
;
++
i
)
allMatchesInds
.
insert
(
i
);
vector
<
float
>
buf
(
matchesSize
);
float
*
buf_beg
=
&
buf
[
0
];
vector
<
group_t
>
groups
;
for
(
size_
t
g
=
0
;
g
<
matchesSize
;
++
g
)
for
(
in
t
g
=
0
;
g
<
matchesSize
;
++
g
)
{
if
(
out
)
if
(
g
%
100
==
0
)
*
out
<<
"G = "
<<
g
<<
endl
;
...
...
tests/cv/src/acameracalibration.cpp
View file @
75cf8c1b
...
...
@@ -1405,7 +1405,7 @@ void CV_StereoCalibrationTest::run( int )
Size
imgsize
;
int
total
=
0
;
for
(
size_
t
i
=
0
;
i
<
nframes
;
i
++
)
for
(
in
t
i
=
0
;
i
<
nframes
;
i
++
)
{
Mat
left
=
imread
(
imglist
[
i
*
2
]);
Mat
right
=
imread
(
imglist
[
i
*
2
+
1
]);
...
...
tests/cv/src/achesscorners.cpp
View file @
75cf8c1b
...
...
@@ -322,7 +322,7 @@ bool CV_ChessboardDetectorTest::checkByGenerator()
const
Size
sizes
[]
=
{
Size
(
6
,
6
),
Size
(
8
,
6
),
Size
(
11
,
12
),
Size
(
5
,
4
)
};
const
size_t
sizes_num
=
sizeof
(
sizes
)
/
sizeof
(
sizes
[
0
]);
const
size_
t
test_num
=
16
;
const
in
t
test_num
=
16
;
int
progress
=
0
;
for
(
int
i
=
0
;
i
<
test_num
;
++
i
)
{
...
...
tests/cv/src/tabruteforcematcher.cpp
View file @
75cf8c1b
...
...
@@ -66,7 +66,7 @@ void BruteForceMatcherTest::run( int )
ts
->
printf
(
CvTS
::
LOG
,
"Matching without matrix multiplication time s: %f, us per pair: %f
\n
"
,
genericMatcherTime
*
1e-6
,
genericMatcherTime
/
(
descriptorsNumber
*
descriptorsNumber
)
);
if
(
specMatches
.
size
()
!=
descriptorsNumber
||
genericMatches
.
size
()
!=
descriptorsNumber
)
if
(
(
int
)
specMatches
.
size
()
!=
descriptorsNumber
||
(
int
)
genericMatches
.
size
()
!=
descriptorsNumber
)
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
for
(
int
i
=
0
;
i
<
descriptorsNumber
;
i
++
)
{
...
...
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