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
486d410a
Commit
486d410a
authored
Jul 27, 2010
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
increased error threshold in matrix-invert test (ticket #465)
parent
21b0652c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
amath.cpp
tests/cxcore/src/amath.cpp
+2
-2
No files found.
tests/cxcore/src/amath.cpp
View file @
486d410a
...
...
@@ -2526,7 +2526,7 @@ void CxCore_InvertTest::print_timing_params( int test_case_idx, char* ptr, int p
double
CxCore_InvertTest
::
get_success_error_level
(
int
/*test_case_idx*/
,
int
,
int
)
{
return
CV_MAT_DEPTH
(
cvGetElemType
(
test_array
[
OUTPUT
][
0
]))
==
CV_32F
?
1e-2
:
1e-
7
;
return
CV_MAT_DEPTH
(
cvGetElemType
(
test_array
[
OUTPUT
][
0
]))
==
CV_32F
?
1e-2
:
1e-
6
;
}
int
CxCore_InvertTest
::
prepare_test_case
(
int
test_case_idx
)
...
...
@@ -2618,7 +2618,7 @@ void CxCore_InvertTest::prepare_to_validation( int )
cvTsSetIdentity
(
&
test_mat
[
REF_OUTPUT
][
0
],
cvScalarAll
(
1.
)
);
}
//
CxCore_InvertTest invert_test;
CxCore_InvertTest
invert_test
;
///////////////// solve /////////////////////
...
...
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