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
a7d28f3b
Commit
a7d28f3b
authored
Mar 09, 2016
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6217 from krrishnarraj:master
parents
9ebbfc7b
9b8013d1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
3 deletions
+6
-3
calibinit.cpp
modules/calib3d/src/calibinit.cpp
+0
-0
test_cameracalibration.cpp
modules/calib3d/test/test_cameracalibration.cpp
+0
-0
agast.cpp
modules/features2d/src/agast.cpp
+0
-0
any.h
modules/flann/include/opencv2/flann/any.h
+2
-1
ts_func.cpp
modules/ts/src/ts_func.cpp
+4
-2
No files found.
modules/calib3d/src/calibinit.cpp
View file @
a7d28f3b
modules/calib3d/test/test_cameracalibration.cpp
View file @
a7d28f3b
modules/features2d/src/agast.cpp
View file @
a7d28f3b
modules/flann/include/opencv2/flann/any.h
View file @
a7d28f3b
...
...
@@ -79,7 +79,8 @@ struct big_any_policy : typed_base_any_policy<T>
{
virtual
void
static_delete
(
void
**
x
)
{
if
(
*
x
)
delete
(
*
reinterpret_cast
<
T
**>
(
x
));
*
x
=
NULL
;
if
(
*
x
)
delete
(
*
reinterpret_cast
<
T
**>
(
x
));
*
x
=
NULL
;
}
virtual
void
copy_from_value
(
void
const
*
src
,
void
**
dest
)
{
...
...
modules/ts/src/ts_func.cpp
View file @
a7d28f3b
...
...
@@ -1772,7 +1772,8 @@ cmpUlpsFlt_(const int* src1, const int* src2, size_t total, int imaxdiff, size_t
for
(
i
=
0
;
i
<
total
;
i
++
)
{
int
a
=
src1
[
i
],
b
=
src2
[
i
];
if
(
a
<
0
)
a
^=
C
;
if
(
b
<
0
)
b
^=
C
;
if
(
a
<
0
)
a
^=
C
;
if
(
b
<
0
)
b
^=
C
;
int
diff
=
std
::
abs
(
a
-
b
);
if
(
realmaxdiff
<
diff
)
{
...
...
@@ -1794,7 +1795,8 @@ cmpUlpsFlt_(const int64* src1, const int64* src2, size_t total, int imaxdiff, si
for
(
i
=
0
;
i
<
total
;
i
++
)
{
int64
a
=
src1
[
i
],
b
=
src2
[
i
];
if
(
a
<
0
)
a
^=
C
;
if
(
b
<
0
)
b
^=
C
;
if
(
a
<
0
)
a
^=
C
;
if
(
b
<
0
)
b
^=
C
;
double
diff
=
fabs
((
double
)
a
-
(
double
)
b
);
if
(
realmaxdiff
<
diff
)
{
...
...
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